diff options
author | Oliver Endriss <o.endriss@gmx.de> | 2008-07-15 21:52:22 +0200 |
---|---|---|
committer | Oliver Endriss <o.endriss@gmx.de> | 2008-07-15 21:52:22 +0200 |
commit | 3a3a1ddb800579a7b162ce3309d72cee97211de8 (patch) | |
tree | 33311f3ad52a23e07bca1cf4fd71621b8f80df1c /linux | |
parent | 76e1d85ca0a94057b7d07c89eee0b4aab2d9689b (diff) | |
download | mediapointer-dvb-s2-3a3a1ddb800579a7b162ce3309d72cee97211de8.tar.gz mediapointer-dvb-s2-3a3a1ddb800579a7b162ce3309d72cee97211de8.tar.bz2 |
dvb-ttpci: Fix build with CONFIG_INPUT_EVDEV=n (Bug #11042)
From: Oliver Endriss <o.endriss@gmx.de>
Fix build with CONFIG_INPUT_EVDEV=n (Bug #11042).
Thanks to Toralf Förster <toralf.foerster@gmx.de> for reporting.
Signed-off-by: Oliver Endriss <o.endriss@gmx.de>
Thanks-to: Toralf Förster <toralf.foerster@gmx.de>
Diffstat (limited to 'linux')
-rw-r--r-- | linux/drivers/media/dvb/ttpci/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/linux/drivers/media/dvb/ttpci/Makefile b/linux/drivers/media/dvb/ttpci/Makefile index 3819390b1..714512372 100644 --- a/linux/drivers/media/dvb/ttpci/Makefile +++ b/linux/drivers/media/dvb/ttpci/Makefile @@ -3,7 +3,11 @@ # and the AV7110 DVB device driver # -dvb-ttpci-objs := av7110_hw.o av7110_v4l.o av7110_av.o av7110_ca.o av7110.o av7110_ipack.o av7110_ir.o +dvb-ttpci-objs := av7110_hw.o av7110_v4l.o av7110_av.o av7110_ca.o av7110.o av7110_ipack.o + +ifdef CONFIG_INPUT_EVDEV +dvb-ttpci-objs += av7110_ir.o +endif obj-$(CONFIG_TTPCI_EEPROM) += ttpci-eeprom.o obj-$(CONFIG_DVB_BUDGET_CORE) += budget-core.o |