kconfig: Remove '# Hidden' comments on promptless symbols
How prompts work is better documented nowadays, and these comments might not be that helpful if you don't know. There are lots promptless symbols that don't have a comment. Also fix up some comments in arch/Kconfig that seem misplaced/redundant, and clean up some whitespace (no blank line after a comment makes it look like it only applies to the symbol directly after it to me). Signed-off-by: Ulf Magnusson <Ulf.Magnusson@nordicsemi.no>
This commit is contained in:
parent
9c9eb3452b
commit
41713244b3
4 changed files with 5 additions and 20 deletions
22
arch/Kconfig
22
arch/Kconfig
|
@ -253,9 +253,7 @@ config NOCACHE_MEMORY
|
||||||
endif # ARCH_HAS_NOCACHE_MEMORY_SUPPORT
|
endif # ARCH_HAS_NOCACHE_MEMORY_SUPPORT
|
||||||
|
|
||||||
menu "Interrupt Configuration"
|
menu "Interrupt Configuration"
|
||||||
#
|
|
||||||
# Interrupt related configs
|
|
||||||
#
|
|
||||||
config DYNAMIC_INTERRUPTS
|
config DYNAMIC_INTERRUPTS
|
||||||
bool "Enable installation of IRQs at runtime"
|
bool "Enable installation of IRQs at runtime"
|
||||||
help
|
help
|
||||||
|
@ -314,7 +312,6 @@ config GEN_IRQ_START_VECTOR
|
||||||
This is a hidden option which needs to be set per architecture and
|
This is a hidden option which needs to be set per architecture and
|
||||||
left alone.
|
left alone.
|
||||||
|
|
||||||
|
|
||||||
config IRQ_OFFLOAD
|
config IRQ_OFFLOAD
|
||||||
bool "Enable IRQ offload"
|
bool "Enable IRQ offload"
|
||||||
depends on TEST
|
depends on TEST
|
||||||
|
@ -330,6 +327,7 @@ endmenu
|
||||||
#
|
#
|
||||||
# Architecture Capabilities
|
# Architecture Capabilities
|
||||||
#
|
#
|
||||||
|
|
||||||
config ARCH_HAS_TRUSTED_EXECUTION
|
config ARCH_HAS_TRUSTED_EXECUTION
|
||||||
bool
|
bool
|
||||||
|
|
||||||
|
@ -362,57 +360,51 @@ config ARCH_HAS_THREAD_ABORT
|
||||||
# Hidden PM feature configs which are to be selected by
|
# Hidden PM feature configs which are to be selected by
|
||||||
# individual SoC.
|
# individual SoC.
|
||||||
#
|
#
|
||||||
|
|
||||||
config HAS_SYS_POWER_STATE_SLEEP_1
|
config HAS_SYS_POWER_STATE_SLEEP_1
|
||||||
# Hidden
|
|
||||||
bool
|
bool
|
||||||
help
|
help
|
||||||
This option signifies that the target supports the SYS_POWER_STATE_SLEEP_1
|
This option signifies that the target supports the SYS_POWER_STATE_SLEEP_1
|
||||||
configuration option.
|
configuration option.
|
||||||
|
|
||||||
config HAS_SYS_POWER_STATE_SLEEP_2
|
config HAS_SYS_POWER_STATE_SLEEP_2
|
||||||
# Hidden
|
|
||||||
bool
|
bool
|
||||||
help
|
help
|
||||||
This option signifies that the target supports the SYS_POWER_STATE_SLEEP_2
|
This option signifies that the target supports the SYS_POWER_STATE_SLEEP_2
|
||||||
configuration option.
|
configuration option.
|
||||||
|
|
||||||
config HAS_SYS_POWER_STATE_SLEEP_3
|
config HAS_SYS_POWER_STATE_SLEEP_3
|
||||||
# Hidden
|
|
||||||
bool
|
bool
|
||||||
help
|
help
|
||||||
This option signifies that the target supports the SYS_POWER_STATE_SLEEP_3
|
This option signifies that the target supports the SYS_POWER_STATE_SLEEP_3
|
||||||
configuration option.
|
configuration option.
|
||||||
|
|
||||||
config HAS_SYS_POWER_STATE_DEEP_SLEEP_1
|
config HAS_SYS_POWER_STATE_DEEP_SLEEP_1
|
||||||
# Hidden
|
|
||||||
bool
|
bool
|
||||||
help
|
help
|
||||||
This option signifies that the target supports the SYS_POWER_STATE_DEEP_SLEEP_1
|
This option signifies that the target supports the SYS_POWER_STATE_DEEP_SLEEP_1
|
||||||
configuration option.
|
configuration option.
|
||||||
|
|
||||||
config HAS_SYS_POWER_STATE_DEEP_SLEEP_2
|
config HAS_SYS_POWER_STATE_DEEP_SLEEP_2
|
||||||
# Hidden
|
|
||||||
bool
|
bool
|
||||||
help
|
help
|
||||||
This option signifies that the target supports the SYS_POWER_STATE_DEEP_SLEEP_2
|
This option signifies that the target supports the SYS_POWER_STATE_DEEP_SLEEP_2
|
||||||
configuration option.
|
configuration option.
|
||||||
|
|
||||||
config HAS_SYS_POWER_STATE_DEEP_SLEEP_3
|
config HAS_SYS_POWER_STATE_DEEP_SLEEP_3
|
||||||
# Hidden
|
|
||||||
bool
|
bool
|
||||||
help
|
help
|
||||||
This option signifies that the target supports the SYS_POWER_STATE_DEEP_SLEEP_3
|
This option signifies that the target supports the SYS_POWER_STATE_DEEP_SLEEP_3
|
||||||
configuration option.
|
configuration option.
|
||||||
|
|
||||||
config BOOTLOADER_CONTEXT_RESTORE_SUPPORTED
|
config BOOTLOADER_CONTEXT_RESTORE_SUPPORTED
|
||||||
# Hidden
|
|
||||||
bool
|
bool
|
||||||
help
|
help
|
||||||
This option signifies that the target has options of bootloaders
|
This option signifies that the target has options of bootloaders
|
||||||
that support context restore upon resume from deep sleep
|
that support context restore upon resume from deep sleep
|
||||||
|
|
||||||
|
#
|
||||||
# End hidden CPU family configs
|
# Hidden CPU family configs
|
||||||
#
|
#
|
||||||
|
|
||||||
config CPU_HAS_TEE
|
config CPU_HAS_TEE
|
||||||
|
@ -498,10 +490,6 @@ config FP_SHARING
|
||||||
|
|
||||||
endif # FLOAT
|
endif # FLOAT
|
||||||
|
|
||||||
#
|
|
||||||
# End hidden PM feature configs
|
|
||||||
#
|
|
||||||
|
|
||||||
config ARCH
|
config ARCH
|
||||||
string
|
string
|
||||||
help
|
help
|
||||||
|
|
|
@ -9,7 +9,6 @@ menuconfig ETH_E1000
|
||||||
help
|
help
|
||||||
Enable Intel(R) PRO/1000 Gigabit Ethernet driver.
|
Enable Intel(R) PRO/1000 Gigabit Ethernet driver.
|
||||||
|
|
||||||
# Hidden option
|
|
||||||
config ETH_NIC_MODEL
|
config ETH_NIC_MODEL
|
||||||
string
|
string
|
||||||
default "e1000"
|
default "e1000"
|
||||||
|
|
|
@ -6,7 +6,6 @@ menuconfig ETH_SMSC911X
|
||||||
help
|
help
|
||||||
Enable driver for SMSC/LAN911x/9220 family of chips.
|
Enable driver for SMSC/LAN911x/9220 family of chips.
|
||||||
|
|
||||||
# Hidden option
|
|
||||||
config ETH_NIC_MODEL
|
config ETH_NIC_MODEL
|
||||||
string
|
string
|
||||||
default "lan9118"
|
default "lan9118"
|
||||||
|
|
|
@ -8,7 +8,6 @@ menuconfig ETH_STELLARIS
|
||||||
help
|
help
|
||||||
Stellaris on-board Ethernet Controller
|
Stellaris on-board Ethernet Controller
|
||||||
|
|
||||||
# Hidden option
|
|
||||||
config ETH_NIC_MODEL
|
config ETH_NIC_MODEL
|
||||||
string
|
string
|
||||||
default "stellaris"
|
default "stellaris"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue