9edfd6c57a
With commitf70f74d15c("kconfig: remove '---help---' support") the "---help---" marking is no longer allowed in Kconfig files. Unfortunately some old ANDROID patches used this deprecated markings, which breaks the build. Fix this up by converting them to the correct style "help" Bug: 156285741 Bug: 146517987 Bug: 31622239 Bug: 120445368 Bug: 119769411 Bug: 129280212 Fixes:7f62740112("ANDROID: add support for vendor hooks") Fixes:2dec8234fe("ANDROID: gnss: Add command line test driver") Fixes:6115619831("ANDROID: AVB error handler to invalidate vbmeta partition.") Fixes:0ce3eb37e9("ANDROID: dm-bow: Add dm-bow feature") Cc: Todd Kjos <tkjos@google.com> Cc: Alistair Delva <adelva@google.com> Cc: David Zeuthen <zeuthen@google.com> Cc: Paul Lawrence <paullawrence@google.com> Signed-off-by: Greg Kroah-Hartman <gregkh@google.com> Change-Id: I8a503c34b5b4dac6dc3e24afbefa10223a6fd946
73 lines
1.7 KiB
Plaintext
73 lines
1.7 KiB
Plaintext
# SPDX-License-Identifier: GPL-2.0-only
|
|
#
|
|
# GNSS receiver configuration
|
|
#
|
|
|
|
menuconfig GNSS
|
|
tristate "GNSS receiver support"
|
|
help
|
|
Say Y here if you have a GNSS receiver (e.g. a GPS receiver).
|
|
|
|
To compile this driver as a module, choose M here: the module will
|
|
be called gnss.
|
|
|
|
if GNSS
|
|
|
|
config GNSS_SERIAL
|
|
tristate
|
|
|
|
config GNSS_MTK_SERIAL
|
|
tristate "Mediatek GNSS receiver support"
|
|
depends on SERIAL_DEV_BUS
|
|
select GNSS_SERIAL
|
|
help
|
|
Say Y here if you have a Mediatek-based GNSS receiver which uses a
|
|
serial interface.
|
|
|
|
To compile this driver as a module, choose M here: the module will
|
|
be called gnss-mtk.
|
|
|
|
If unsure, say N.
|
|
|
|
config GNSS_SIRF_SERIAL
|
|
tristate "SiRFstar GNSS receiver support"
|
|
depends on SERIAL_DEV_BUS
|
|
help
|
|
Say Y here if you have a SiRFstar-based GNSS receiver which uses a
|
|
serial interface.
|
|
|
|
To compile this driver as a module, choose M here: the module will
|
|
be called gnss-sirf.
|
|
|
|
If unsure, say N.
|
|
|
|
config GNSS_UBX_SERIAL
|
|
tristate "u-blox GNSS receiver support"
|
|
depends on SERIAL_DEV_BUS
|
|
select GNSS_SERIAL
|
|
help
|
|
Say Y here if you have a u-blox GNSS receiver which uses a serial
|
|
interface.
|
|
|
|
To compile this driver as a module, choose M here: the module will
|
|
be called gnss-ubx.
|
|
|
|
If unsure, say N.
|
|
|
|
config GNSS_CMDLINE_SERIAL
|
|
tristate "Command line test driver for GNSS"
|
|
depends on SERIAL_DEV_BUS
|
|
select GNSS_SERIAL
|
|
help
|
|
Say Y here if you want to test the GNSS subsystem but do not have a
|
|
way to communicate a binding through firmware such as DT or ACPI.
|
|
The correct serdev device and protocol type must be specified on
|
|
the module command line.
|
|
|
|
To compile this driver as a module, choose M here: the module will
|
|
be called gnss-cmdline.
|
|
|
|
If unsure, say N.
|
|
|
|
endif # GNSS
|