mirror of
https://github.com/raspberrypi/linux.git
synced 2025-12-27 12:32:50 +00:00
This dummy PPS generator can be used for debugging and documentation purposes. Signed-off-by: Rodolfo Giometti <giometti@enneenne.com> Link: https://lore.kernel.org/r/20241108073115.759039-3-giometti@enneenne.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
13 lines
313 B
Makefile
13 lines
313 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
#
|
|
# Makefile for PPS generators.
|
|
#
|
|
|
|
pps_gen_core-y := pps_gen.o sysfs.o
|
|
obj-$(CONFIG_PPS_GENERATOR) := pps_gen_core.o
|
|
|
|
obj-$(CONFIG_PPS_GENERATOR_DUMMY) += pps_gen-dummy.o
|
|
obj-$(CONFIG_PPS_GENERATOR_PARPORT) += pps_gen_parport.o
|
|
|
|
ccflags-$(CONFIG_PPS_DEBUG) := -DDEBUG
|