Commit 2933974c authored by Sean Young's avatar Sean Young Committed by Mauro Carvalho Chehab

[media] staging: lirc_parallel: remove

The lirc_parallel driver was merged in 2010 and noone has attempted
to do the work necessary to get it out of staging (i.e. port it to
rc-core). I have not been able to find one of these devices, and
a machine with a parallel port is pretty rare too.
Signed-off-by: default avatarSean Young <sean@mess.org>
Cc: Jarod Wilson <jarod@redhat.com>
Cc: Christoph Bartelmus <lirc@bartelmus.de>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@s-opensource.com>
parent cc06393a
......@@ -26,12 +26,6 @@ config LIRC_IMON
Current generation iMON devices use the input layer imon driver.
config LIRC_PARALLEL
tristate "Homebrew Parallel Port Receiver"
depends on LIRC && PARPORT
help
Driver for Homebrew Parallel Port Receivers
config LIRC_SASEM
tristate "Sasem USB IR Remote"
depends on LIRC && USB
......
......@@ -5,7 +5,6 @@
obj-$(CONFIG_LIRC_BT829) += lirc_bt829.o
obj-$(CONFIG_LIRC_IMON) += lirc_imon.o
obj-$(CONFIG_LIRC_PARALLEL) += lirc_parallel.o
obj-$(CONFIG_LIRC_SASEM) += lirc_sasem.o
obj-$(CONFIG_LIRC_SIR) += lirc_sir.o
obj-$(CONFIG_LIRC_ZILOG) += lirc_zilog.o
This diff is collapsed.
/* lirc_parallel.h */
#ifndef _LIRC_PARALLEL_H
#define _LIRC_PARALLEL_H
#include <linux/lp.h>
#define LIRC_PORT_LEN 3
#define LIRC_LP_BASE 0
#define LIRC_LP_STATUS 1
#define LIRC_LP_CONTROL 2
#define LIRC_PORT_DATA LIRC_LP_BASE /* base */
#define LIRC_PORT_TIMER LIRC_LP_STATUS /* status port */
#define LIRC_PORT_TIMER_BIT LP_PBUSY /* busy signal */
#define LIRC_PORT_SIGNAL LIRC_LP_STATUS /* status port */
#define LIRC_PORT_SIGNAL_BIT LP_PACK /* ack signal */
#define LIRC_PORT_IRQ LIRC_LP_CONTROL /* control port */
#define LIRC_SFH506_DELAY 0 /* delay t_phl in usecs */
#define LIRC_PARALLEL_MAX_TRANSMITTERS 8
#define LIRC_PARALLEL_TRANSMITTER_MASK ((1<<LIRC_PARALLEL_MAX_TRANSMITTERS) - 1)
#endif
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment