mirror of
https://github.com/torvalds/linux.git
synced 2024-12-14 15:13:52 +00:00
b676e7316a
The dvb_filter.c can hardly be considered as part of the DVB core. More than half of the code there is commented out by av7110 and ttusb_dec. On the latter, just two small helper functions and a struct definition is used. Being part of the core means that it would require an amount of work to fix issues in it, like bad printk's on it, and to document it on some future, like other kAPI headers. It simply not worth the effort for something that seems to be deprecated, as no new drivers use it. So, move it out of the core, by moving it to pci/ttpci directory, where av7110 driver is kept, and copy the two routines used by ttyusb_dec directly into its code. Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
22 lines
680 B
Makefile
22 lines
680 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 dvb_filter.o
|
|
|
|
ifdef CONFIG_DVB_AV7110_IR
|
|
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
|
|
|
|
ccflags-y += -Idrivers/media/dvb-core/ -Idrivers/media/dvb-frontends/
|
|
ccflags-y += -Idrivers/media/tuners
|