mirror of
https://github.com/FEX-Emu/linux.git
synced 2025-02-14 08:19:28 +00:00
99ca5557ff
There are three drivers with *it913x name on it, and they all belong to the same device: a tuner, at it913x.c; a frontend: it913x-fe.c; a bridge: it913x.c, renamed to dvb_usb_it913x by the building system. This is confusing. Even more confusing are the two .c files with the same name under different directories, with different contents and different functions. So, prepend the tuner one. This also breaks the out-of-tree compilation system. Reported-by: Frederic Fays <frederic.fays@gmail.com> Acked-by: Antti Palosaari <crope@iki.fi> Reviewed-by: Antti Palosaari <crope@iki.fi> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
41 lines
1.6 KiB
Makefile
41 lines
1.6 KiB
Makefile
#
|
|
# Makefile for common V4L/DVB tuners
|
|
#
|
|
|
|
tda18271-objs := tda18271-maps.o tda18271-common.o tda18271-fe.o
|
|
|
|
obj-$(CONFIG_MEDIA_TUNER_XC2028) += tuner-xc2028.o
|
|
obj-$(CONFIG_MEDIA_TUNER_SIMPLE) += tuner-simple.o
|
|
# tuner-types will be merged into tuner-simple, in the future
|
|
obj-$(CONFIG_MEDIA_TUNER_SIMPLE) += tuner-types.o
|
|
obj-$(CONFIG_MEDIA_TUNER_MT20XX) += mt20xx.o
|
|
obj-$(CONFIG_MEDIA_TUNER_TDA8290) += tda8290.o
|
|
obj-$(CONFIG_MEDIA_TUNER_TEA5767) += tea5767.o
|
|
obj-$(CONFIG_MEDIA_TUNER_TEA5761) += tea5761.o
|
|
obj-$(CONFIG_MEDIA_TUNER_TDA9887) += tda9887.o
|
|
obj-$(CONFIG_MEDIA_TUNER_TDA827X) += tda827x.o
|
|
obj-$(CONFIG_MEDIA_TUNER_TDA18271) += tda18271.o
|
|
obj-$(CONFIG_MEDIA_TUNER_XC5000) += xc5000.o
|
|
obj-$(CONFIG_MEDIA_TUNER_XC4000) += xc4000.o
|
|
obj-$(CONFIG_MEDIA_TUNER_MT2060) += mt2060.o
|
|
obj-$(CONFIG_MEDIA_TUNER_MT2063) += mt2063.o
|
|
obj-$(CONFIG_MEDIA_TUNER_MT2266) += mt2266.o
|
|
obj-$(CONFIG_MEDIA_TUNER_QT1010) += qt1010.o
|
|
obj-$(CONFIG_MEDIA_TUNER_MT2131) += mt2131.o
|
|
obj-$(CONFIG_MEDIA_TUNER_MXL5005S) += mxl5005s.o
|
|
obj-$(CONFIG_MEDIA_TUNER_MXL5007T) += mxl5007t.o
|
|
obj-$(CONFIG_MEDIA_TUNER_MC44S803) += mc44s803.o
|
|
obj-$(CONFIG_MEDIA_TUNER_MAX2165) += max2165.o
|
|
obj-$(CONFIG_MEDIA_TUNER_TDA18218) += tda18218.o
|
|
obj-$(CONFIG_MEDIA_TUNER_TDA18212) += tda18212.o
|
|
obj-$(CONFIG_MEDIA_TUNER_E4000) += e4000.o
|
|
obj-$(CONFIG_MEDIA_TUNER_FC2580) += fc2580.o
|
|
obj-$(CONFIG_MEDIA_TUNER_TUA9001) += tua9001.o
|
|
obj-$(CONFIG_MEDIA_TUNER_FC0011) += fc0011.o
|
|
obj-$(CONFIG_MEDIA_TUNER_FC0012) += fc0012.o
|
|
obj-$(CONFIG_MEDIA_TUNER_FC0013) += fc0013.o
|
|
obj-$(CONFIG_MEDIA_TUNER_IT913X) += tuner_it913x.o
|
|
|
|
ccflags-y += -I$(srctree)/drivers/media/dvb-core
|
|
ccflags-y += -I$(srctree)/drivers/media/dvb-frontends
|