mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 00:48:50 +00:00
ee4736e50b
Add a generic driver for GNSS receivers with a USB interface with two bulk endpoints. The driver currently assumes that the device protocol is NMEA (only) but this can be generalised later as needed. Link: https://lore.kernel.org/r/20211220111901.23206-2-johan@kernel.org Reviewed-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Tested-by: Marc Ferland <ferlandm@amotus.ca> Signed-off-by: Johan Hovold <johan@kernel.org>
22 lines
456 B
Makefile
22 lines
456 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Makefile for the GNSS subsystem.
|
|
#
|
|
|
|
obj-$(CONFIG_GNSS) += gnss.o
|
|
gnss-y := core.o
|
|
|
|
obj-$(CONFIG_GNSS_SERIAL) += gnss-serial.o
|
|
gnss-serial-y := serial.o
|
|
|
|
obj-$(CONFIG_GNSS_MTK_SERIAL) += gnss-mtk.o
|
|
gnss-mtk-y := mtk.o
|
|
|
|
obj-$(CONFIG_GNSS_SIRF_SERIAL) += gnss-sirf.o
|
|
gnss-sirf-y := sirf.o
|
|
|
|
obj-$(CONFIG_GNSS_UBX_SERIAL) += gnss-ubx.o
|
|
gnss-ubx-y := ubx.o
|
|
|
|
obj-$(CONFIG_GNSS_USB) += gnss-usb.o
|
|
gnss-usb-y := usb.o
|