drivers: ipm: 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
a816d105a9
commit
2d50da70a1
1 changed files with 0 additions and 4 deletions
|
|
@ -1,21 +1,18 @@
|
||||||
menuconfig IPM
|
menuconfig IPM
|
||||||
bool
|
bool
|
||||||
prompt "IPM drivers"
|
prompt "IPM drivers"
|
||||||
default n
|
|
||||||
help
|
help
|
||||||
Include interrupt-based inter-processor mailboxes
|
Include interrupt-based inter-processor mailboxes
|
||||||
drivers in system configuration
|
drivers in system configuration
|
||||||
|
|
||||||
config IPM_QUARK_SE
|
config IPM_QUARK_SE
|
||||||
bool "Quark SE IPM driver"
|
bool "Quark SE IPM driver"
|
||||||
default n
|
|
||||||
depends on IPM
|
depends on IPM
|
||||||
help
|
help
|
||||||
Driver for Quark SE mailboxes
|
Driver for Quark SE mailboxes
|
||||||
|
|
||||||
config IPM_QUARK_SE_MASTER
|
config IPM_QUARK_SE_MASTER
|
||||||
bool "Quark SE IPM master controller"
|
bool "Quark SE IPM master controller"
|
||||||
default n
|
|
||||||
depends on IPM_QUARK_SE
|
depends on IPM_QUARK_SE
|
||||||
help
|
help
|
||||||
Enable this for the first CPU that initializes IPM.
|
Enable this for the first CPU that initializes IPM.
|
||||||
|
|
@ -24,7 +21,6 @@ config IPM_QUARK_SE_MASTER
|
||||||
|
|
||||||
config IPM_MCUX
|
config IPM_MCUX
|
||||||
bool "MCUX IPM driver"
|
bool "MCUX IPM driver"
|
||||||
default n
|
|
||||||
depends on IPM && HAS_MCUX
|
depends on IPM && HAS_MCUX
|
||||||
help
|
help
|
||||||
Driver for MCUX mailbox
|
Driver for MCUX mailbox
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue