zephyr/drivers/memc/Kconfig
Torsten Rasmussen bd61122aa2 kconfig: drivers: experimental settings now uses select EXPERIMENTAL
With the introduction of `EXPERIMENTAL` and `WARN_EXPERIMENTAL` in
Zephyr all drivers settings having `[EXPERIMENTAL]` in their
prompt has has been updated to include `select EXPERIMENTAL` so that
developers can enable warnings when experimental features are enabled.

Signed-off-by: Torsten Rasmussen <Torsten.Rasmussen@nordicsemi.no>
2021-10-25 10:46:48 +02:00

29 lines
547 B
Plaintext

# Memory controller configuration options
# Copyright (c) 2020 Teslabs Engineering S.L.
# SPDX-License-Identifier: Apache-2.0
menuconfig MEMC
bool "Memory controllers [EXPERIMENTAL]"
select EXPERIMENTAL
help
Add support for memory controllers
if MEMC
module = MEMC
module-str = memc
source "subsys/logging/Kconfig.template.log_config"
config MEMC_INIT_PRIORITY
int "Initialization priority"
default 0
help
Memory controllers initialization priority.
source "drivers/memc/Kconfig.stm32"
source "drivers/memc/Kconfig.mcux"
endif