diff options
author | Alexander Gordeev <lasaine@lvk.cs.msu.su> | 2011-01-13 02:00:59 +0100 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-01-13 17:03:21 +0100 |
commit | 46b402a0e5e4b4d81b11c32dfb2312bf5828ecb5 (patch) | |
tree | f04bdc9a375a0f6c7447de58800dd2cd95be9ca5 /drivers/pps/generators/Makefile | |
parent | pps: add parallel port PPS client (diff) | |
download | linux-46b402a0e5e4b4d81b11c32dfb2312bf5828ecb5.tar.xz linux-46b402a0e5e4b4d81b11c32dfb2312bf5828ecb5.zip |
pps: add parallel port PPS signal generator
Add PPS signal generator which utilizes STROBE pin of a parallel port to
send PPS signals. It uses parport abstraction layer and hrtimers to
precisely control the signal.
[akpm@linux-foundation.org: fix build]
Signed-off-by: Alexander Gordeev <lasaine@lvk.cs.msu.su>
Acked-by: Rodolfo Giometti <giometti@linux.it>
Cc: john stultz <johnstul@us.ibm.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/pps/generators/Makefile')
-rw-r--r-- | drivers/pps/generators/Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/drivers/pps/generators/Makefile b/drivers/pps/generators/Makefile new file mode 100644 index 000000000000..303304a6b8ec --- /dev/null +++ b/drivers/pps/generators/Makefile @@ -0,0 +1,9 @@ +# +# Makefile for PPS generators. +# + +obj-$(CONFIG_PPS_GENERATOR_PARPORT) += pps_gen_parport.o + +ifeq ($(CONFIG_PPS_DEBUG),y) +EXTRA_CFLAGS += -DDEBUG +endif |