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>
21 lines
353 B
Plaintext
21 lines
353 B
Plaintext
config RTC_QMSI
|
|
bool "QMSI RTC Driver"
|
|
depends on QMSI
|
|
help
|
|
Build QMSI RTC driver.
|
|
|
|
if RTC_QMSI
|
|
|
|
config RTC_QMSI_API_REENTRANCY
|
|
bool "RTC shim driver API reentrancy"
|
|
help
|
|
Enable support for RTC shim driver API reentrancy.
|
|
|
|
config RTC_PRESCALER
|
|
int "Prescaler size"
|
|
default 1
|
|
help
|
|
RTC prescaler used to determine ticks per second
|
|
|
|
endif
|