mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-10-31 16:38:12 +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>
11 lines
264 B
Makefile
11 lines
264 B
Makefile
#
|
|
# Makefile for the kernel DVB device drivers.
|
|
#
|
|
|
|
dvb-net-$(CONFIG_DVB_NET) := dvb_net.o
|
|
|
|
dvb-core-objs := dvbdev.o dmxdev.o dvb_demux.o \
|
|
dvb_ca_en50221.o dvb_frontend.o \
|
|
$(dvb-net-y) dvb_ringbuffer.o dvb_math.o
|
|
|
|
obj-$(CONFIG_DVB_CORE) += dvb-core.o
|