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>
34 lines
668 B
Text
34 lines
668 B
Text
# Kconfig - AIO/Comparator configuration options
|
|
#
|
|
#
|
|
# Copyright (c) 2015-2016 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
#
|
|
# AIO/Comparator options
|
|
#
|
|
menuconfig AIO_COMPARATOR
|
|
bool "AIO/Comparator Configuration"
|
|
|
|
if AIO_COMPARATOR
|
|
menuconfig AIO_COMPARATOR_QMSI
|
|
bool "Enable QMSI AIO/comparator driver"
|
|
depends on QMSI
|
|
help
|
|
QMSI AIO/Comparator driver.
|
|
|
|
config AIO_COMPARATOR_0_NAME
|
|
string "Device name for AIO/comparator"
|
|
default "AIO_CMP_0"
|
|
help
|
|
Device name for the AIO/comparator.
|
|
|
|
config AIO_COMPARATOR_0_IRQ_PRI
|
|
int "IRQ Priority for AIO/comparator"
|
|
default 3
|
|
help
|
|
IRQ Priority for the AIO/comparator.
|
|
|
|
endif # AIO_COMPARATOR
|