mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-04-04 15:55:59 -04:00
This driver was introduced in January 2011 and has been marked
BROKEN for almost its entire existence, since commit 95b90afec3
("pps: make pps_gen_parport depend on BROKEN") in March 2011.
It is unlikely anyone will fix the driver at this point.
Signed-off-by: Ethan Nelson-Moore <enelsonmoore@gmail.com>
Acked-by: Rodolfo Giometti <giometti@enneenne.com>
Link: https://patch.msgid.link/20260123035607.22340-1-enelsonmoore@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
13 lines
309 B
Makefile
13 lines
309 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_TIO) += pps_gen_tio.o
|
|
|
|
ccflags-$(CONFIG_PPS_DEBUG) := -DDEBUG
|