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>
27 lines
604 B
Plaintext
27 lines
604 B
Plaintext
menuconfig IPM
|
|
bool
|
|
prompt "IPM drivers"
|
|
help
|
|
Include interrupt-based inter-processor mailboxes
|
|
drivers in system configuration
|
|
|
|
config IPM_QUARK_SE
|
|
bool "Quark SE IPM driver"
|
|
depends on IPM
|
|
help
|
|
Driver for Quark SE mailboxes
|
|
|
|
config IPM_QUARK_SE_MASTER
|
|
bool "Quark SE IPM master controller"
|
|
depends on IPM_QUARK_SE
|
|
help
|
|
Enable this for the first CPU that initializes IPM.
|
|
Sets up the initial interrupt mask and clears out all
|
|
channels. Should be turned on for one CPU only.
|
|
|
|
config IPM_MCUX
|
|
bool "MCUX IPM driver"
|
|
depends on IPM && HAS_MCUX
|
|
help
|
|
Driver for MCUX mailbox
|