Consistently use
config FOO
bool/int/hex/string "Prompt text"
instead of
config FOO
bool/int/hex/string
prompt "Prompt text"
(...and a bunch of other variations that e.g. swapped the order of the
type and the 'prompt', or put other properties between them).
The shorthand is fully equivalent to using 'prompt'. It saves lines and
avoids tricking people into thinking there is some semantic difference.
Most of the grunt work was done by a modified version of
https://unix.stackexchange.com/questions/26284/
how-can-i-use-sed-to-replace-a-multi-line-string/26290#26290, but some
of the rarer variations had to be converted manually.
Signed-off-by: Ulf Magnusson <Ulf.Magnusson@nordicsemi.no>
26 lines
596 B
Plaintext
26 lines
596 B
Plaintext
menuconfig IPM
|
|
bool "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
|