Revision 20e6c3cc90c0a86dba659dd9e7d60b429d88746d authored by Yicong Yang on 10 June 2022, 07:54:28 UTC, committed by Chanwoo Choi on 29 June 2022, 20:11:17 UTC
HZ macros has been centralized in units.h since [1]. Use it to avoid
duplicated definition.

[1] commit e2c77032fcbe ("units: add the HZ macros")

Signed-off-by: Yicong Yang <yangyicong@hisilicon.com>
Signed-off-by: Chanwoo Choi <cw00.choi@samsung.com>
1 parent 0cca7e8
Raw File
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
back to top