drivers: rtc: 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:
Ulf Magnusson 2018-06-27 11:08:00 +02:00 committed by Anas Nashif
commit cddca70860
3 changed files with 0 additions and 4 deletions

View file

@ -11,7 +11,6 @@
# #
menuconfig RTC menuconfig RTC
bool "Real-Time Clock" bool "Real-Time Clock"
default n
help help
Enable options for Real-Time Clock drivers. Enable options for Real-Time Clock drivers.

View file

@ -9,6 +9,5 @@ menuconfig RTC_MCUX
bool bool
prompt "MCUX RTC driver" prompt "MCUX RTC driver"
depends on RTC && HAS_MCUX_RTC depends on RTC && HAS_MCUX_RTC
default n
help help
Enable support for mcux rtc driver. Enable support for mcux rtc driver.

View file

@ -1,7 +1,6 @@
config RTC_QMSI config RTC_QMSI
bool "QMSI RTC Driver" bool "QMSI RTC Driver"
depends on QMSI depends on QMSI
default n
help help
Build QMSI RTC driver. Build QMSI RTC driver.
@ -10,7 +9,6 @@ if RTC_QMSI
config RTC_QMSI_API_REENTRANCY config RTC_QMSI_API_REENTRANCY
bool bool
prompt "RTC shim driver API reentrancy" prompt "RTC shim driver API reentrancy"
default n
help help
Enable support for RTC shim driver API reentrancy. Enable support for RTC shim driver API reentrancy.