mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-16 09:13:55 +08:00
37768b054f
Add a generic serial GNSS driver (library) which provides a common implementation for the gnss interface and power management (runtime and system suspend). This allows GNSS drivers for specific chip to be implemented by simply providing a set_power() callback to handle three states: ACTIVE, STANDBY and OFF. Signed-off-by: Johan Hovold <johan@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11 lines
194 B
Makefile
11 lines
194 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
|