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>
24 lines
457 B
Plaintext
24 lines
457 B
Plaintext
# Copyright (c) 2021 Carlo Caione <ccaione@baylibre.com>
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
menuconfig CACHE
|
|
bool "External cache controller drivers"
|
|
default y if CACHE_MANAGEMENT
|
|
help
|
|
Enable support for external cache controllers drivers
|
|
|
|
if CACHE
|
|
|
|
config CACHE_HAS_DRIVER
|
|
bool
|
|
|
|
module = CACHE
|
|
module-str = cache
|
|
source "subsys/logging/Kconfig.template.log_config"
|
|
|
|
comment "Device Drivers"
|
|
|
|
source "drivers/cache/Kconfig.aspeed"
|
|
|
|
endif # CACHE
|