mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-11-19 16:14:13 +08:00
717c033669
Add an optional feature of PPSAPI, kernel consumer support, which uses the added hardpps() function. Signed-off-by: Alexander Gordeev <lasaine@lvk.cs.msu.su> Acked-by: Rodolfo Giometti <giometti@linux.it> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
11 lines
200 B
Makefile
11 lines
200 B
Makefile
#
|
|
# Makefile for the PPS core.
|
|
#
|
|
|
|
pps_core-y := pps.o kapi.o sysfs.o
|
|
pps_core-$(CONFIG_NTP_PPS) += kc.o
|
|
obj-$(CONFIG_PPS) := pps_core.o
|
|
obj-y += clients/
|
|
|
|
ccflags-$(CONFIG_PPS_DEBUG) := -DDEBUG
|