kconfig: remove Enable from boolean prompts
According to Kconfig guidelines, boolean prompts must not start with
"Enable...". The following command has been used to automate the changes
in this patch:
sed -i "s/bool \"[Ee]nables\? \(\w\)/bool \"\U\1/g" **/Kconfig*
Signed-off-by: Gerard Marull-Paretas <gerard.marull@nordicsemi.no>
diff --git a/arch/Kconfig b/arch/Kconfig
index f68669c..d12131e 100644
--- a/arch/Kconfig
+++ b/arch/Kconfig
@@ -378,7 +378,7 @@
menu "Interrupt Configuration"
config DYNAMIC_INTERRUPTS
- bool "Enable installation of IRQs at runtime"
+ bool "Installation of IRQs at runtime"
help
Enable installation of interrupts at runtime, which will move some
interrupt-related data structures to RAM instead of ROM, and
@@ -436,7 +436,7 @@
left alone.
config IRQ_OFFLOAD
- bool "Enable IRQ offload"
+ bool "IRQ offload"
depends on TEST
help
Enable irq_offload() API which allows functions to be synchronously
@@ -618,7 +618,7 @@
as reserved) and Z_PAGE_FRAME_MAPPED will not be set.
menuconfig MPU
- bool "Enable MPU features"
+ bool "MPU features"
depends on CPU_HAS_MPU
help
This option, when enabled, indicates to the core kernel that an MPU
@@ -699,7 +699,7 @@
menu "Floating Point Options"
config FPU
- bool "Enable floating point unit (FPU)"
+ bool "Floating point unit (FPU)"
depends on CPU_HAS_FPU
help
This option enables the hardware Floating Point Unit (FPU), in order to
@@ -740,7 +740,7 @@
menu "Cache Options"
config CACHE_MANAGEMENT
- bool "Enable cache management features"
+ bool "Cache management features"
help
This links in the cache management functions (for d-cache and i-cache
where possible).