diff options
author | Mauro Carvalho Chehab <mchehab@infradead.org> | 2008-04-29 20:38:44 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2008-04-29 17:41:37 -0400 |
commit | 7c91f0624a9a2b8b9b122cf94fef34bc7f7347a6 (patch) | |
tree | e48220117475037125e86a3add48aa12cef7731f /drivers/media/common/tuners/Makefile | |
parent | 5fe95e0b865060839449e1a61c1d5c67a4faab9a (diff) |
V4L/DVB(7767): Move tuners to common/tuners
There were several issues in the past, caused by the hybrid tuner design, since
now, the same tuner can be used by drivers/media/dvb and drivers/media/video.
Kconfig items were rearranged, to split V4L/DVB core from their drivers.
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media/common/tuners/Makefile')
-rw-r--r-- | drivers/media/common/tuners/Makefile | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/drivers/media/common/tuners/Makefile b/drivers/media/common/tuners/Makefile new file mode 100644 index 000000000000..685ae64fa3b8 --- /dev/null +++ b/drivers/media/common/tuners/Makefile | |||
@@ -0,0 +1,21 @@ | |||
1 | # | ||
2 | # Makefile for common V4L/DVB tuners | ||
3 | # | ||
4 | |||
5 | tda18271-objs := tda18271-maps.o tda18271-common.o tda18271-fe.o | ||
6 | |||
7 | obj-$(CONFIG_TUNER_XC2028) += tuner-xc2028.o | ||
8 | obj-$(CONFIG_TUNER_SIMPLE) += tuner-simple.o | ||
9 | # tuner-types will be merged into tuner-simple, in the future | ||
10 | obj-$(CONFIG_TUNER_SIMPLE) += tuner-types.o | ||
11 | obj-$(CONFIG_TUNER_MT20XX) += mt20xx.o | ||
12 | obj-$(CONFIG_TUNER_TDA8290) += tda8290.o | ||
13 | obj-$(CONFIG_TUNER_TEA5767) += tea5767.o | ||
14 | obj-$(CONFIG_TUNER_TEA5761) += tea5761.o | ||
15 | obj-$(CONFIG_TUNER_TDA9887) += tda9887.o | ||
16 | obj-$(CONFIG_DVB_TDA827X) += tda827x.o | ||
17 | obj-$(CONFIG_DVB_TDA18271) += tda18271.o | ||
18 | obj-$(CONFIG_DVB_TUNER_XC5000) += xc5000.o | ||
19 | |||
20 | EXTRA_CFLAGS += -Idrivers/media/dvb/dvb-core | ||
21 | EXTRA_CFLAGS += -Idrivers/media/dvb/frontends | ||