c41dd36de2
Unify the drivers/*/Kconfig menuconfig title strings to the format "<class> [(acronym)] [bus] drivers". Including both the full name of the driver class and an acronym makes menuconfig more user friendly as some of the acronyms are less well-known than others. It also improves Kconfig search, both via menuconfig and via the generated Kconfig documentation. Signed-off-by: Henrik Brix Andersen <hebad@vestas.com>
31 lines
589 B
Plaintext
31 lines
589 B
Plaintext
# Memory controller configuration options
|
|
|
|
# Copyright (c) 2020 Teslabs Engineering S.L.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
menuconfig MEMC
|
|
bool "Memory controller drivers [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"
|
|
|
|
source "drivers/memc/Kconfig.sam"
|
|
|
|
endif
|