mirror of
https://github.com/torvalds/linux.git
synced 2024-12-14 07:02:23 +00:00
439d0e4250
Fix build with CONFIG_INPUT_EVDEV=n (Bug #11042). Thanks to Toralf Förster <toralf.foerster@gmx.de> for reporting. Thanks-to: Toralf Förster <toralf.foerster@gmx.de> Signed-off-by: Oliver Endriss <o.endriss@gmx.de> Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
31 lines
889 B
Makefile
31 lines
889 B
Makefile
#
|
|
# Makefile for the kernel SAA7146 FULL TS DVB device driver
|
|
# 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
|
|
|
|
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
|
|
obj-$(CONFIG_DVB_BUDGET) += budget.o
|
|
obj-$(CONFIG_DVB_BUDGET_AV) += budget-av.o
|
|
obj-$(CONFIG_DVB_BUDGET_CI) += budget-ci.o
|
|
obj-$(CONFIG_DVB_BUDGET_PATCH) += budget-patch.o
|
|
obj-$(CONFIG_DVB_AV7110) += dvb-ttpci.o
|
|
|
|
EXTRA_CFLAGS += -Idrivers/media/dvb/dvb-core/ -Idrivers/media/dvb/frontends/
|
|
EXTRA_CFLAGS += -Idrivers/media/common/tuners
|
|
|
|
hostprogs-y := fdump
|
|
|
|
ifeq ($(CONFIG_DVB_AV7110_FIRMWARE),y)
|
|
$(obj)/av7110.o: $(obj)/av7110_firm.h
|
|
|
|
$(obj)/av7110_firm.h: $(obj)/fdump
|
|
$(obj)/fdump $(CONFIG_DVB_AV7110_FIRMWARE_FILE) dvb_ttpci_fw $@
|
|
endif
|