drivers: counter: Kconfig: Remove redundant 'default n' properties
Bool symbols implicitly default to 'n'. A 'default n' can make sense e.g. in a Kconfig.defconfig file, if you want to override a 'default y' on the base definition of the symbol. It isn't used like that on any of these symbols though, and is inconsistent. This will make the auto-generated Kconfig documentation have "No defaults. Implicitly defaults to n." as well, which is clearer than 'default n if ...' Signed-off-by: Ulf Magnusson <Ulf.Magnusson@nordicsemi.no>
This commit is contained in:
parent
d7fa8b25aa
commit
8308a51930
4 changed files with 0 additions and 14 deletions
|
@ -11,7 +11,6 @@ if SOC_FAMILY_ARM
|
|||
config TIMER_DTMR_CMSDK_APB
|
||||
bool
|
||||
prompt "ARM CMSDK (Cortex-M System Design Kit) DTMR Timer driver"
|
||||
default n
|
||||
help
|
||||
The dualtimer (DTMR) present in the platform is used as a timer.
|
||||
This option enables the support for the timer.
|
||||
|
@ -23,7 +22,6 @@ if TIMER_DTMR_CMSDK_APB
|
|||
config TIMER_DTMR_CMSDK_APB_0
|
||||
bool
|
||||
prompt "Timer 0 driver"
|
||||
default n
|
||||
help
|
||||
Enable support for Timer 0.
|
||||
|
||||
|
@ -46,7 +44,6 @@ endif # TIMER_DTMR_CMSDK_APB
|
|||
config COUNTER_DTMR_CMSDK_APB
|
||||
bool
|
||||
prompt "ARM CMSDK (Cortex-M System Design Kit) DTMR Counter driver"
|
||||
default n
|
||||
help
|
||||
The dualtimer (DTMR) present in the platform is used as a counter.
|
||||
This option enables the support for the counter.
|
||||
|
@ -59,7 +56,6 @@ config COUNTER_DTMR_CMSDK_APB_0
|
|||
bool
|
||||
prompt "Counter 0 driver"
|
||||
depends on !TIMER_DTMR_CMSDK_APB_0
|
||||
default n
|
||||
help
|
||||
Enable support for Counter 0.
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue