aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/video/Makefile
diff options
context:
space:
mode:
authorMichael Krufky <mkrufky@linuxtv.org>2008-04-22 13:41:49 -0400
committerMauro Carvalho Chehab <mchehab@infradead.org>2008-04-24 12:42:22 -0400
commit82b3083d2673e5fe8ac508071038b2b4c10bbf9c (patch)
treebb32804b2be1ea16936f033c944597e2b2126c83 /drivers/media/video/Makefile
parent7f8447d13d3abaeb46d0e6ae2890a843aa09561f (diff)
V4L/DVB (7125): tuner: build tuner-types independently of tuner-core
tuner-types is needed for tuner-simple, and does not need to be bound to tuner-core. Any caller of tuner-simple, including tuner-core, needs to pass a structure from tuner-types into tuner-simple at attach-time. Export the two needed symbols from tuner-types for now, so that card-level drivers can attach tuner-simple for hybrid dvb_frontend devices. We will remove this dependency altogether as tuner refactoring phase 3 progresses. Signed-off-by: Michael Krufky <mkrufky@linuxtv.org> Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media/video/Makefile')
-rw-r--r--drivers/media/video/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/media/video/Makefile b/drivers/media/video/Makefile
index 3f209b32eeac..6f1ef09df1d6 100644
--- a/drivers/media/video/Makefile
+++ b/drivers/media/video/Makefile
@@ -4,7 +4,7 @@
4 4
5zr36067-objs := zoran_procfs.o zoran_device.o \ 5zr36067-objs := zoran_procfs.o zoran_device.o \
6 zoran_driver.o zoran_card.o 6 zoran_driver.o zoran_card.o
7tuner-objs := tuner-core.o tuner-types.o 7tuner-objs := tuner-core.o
8 8
9msp3400-objs := msp3400-driver.o msp3400-kthreads.o 9msp3400-objs := msp3400-driver.o msp3400-kthreads.o
10 10
@@ -84,6 +84,7 @@ obj-$(CONFIG_VIDEO_DPC) += dpc7146.o
84obj-$(CONFIG_TUNER_3036) += tuner-3036.o 84obj-$(CONFIG_TUNER_3036) += tuner-3036.o
85 85
86obj-$(CONFIG_VIDEO_TUNER) += tuner.o 86obj-$(CONFIG_VIDEO_TUNER) += tuner.o
87obj-$(CONFIG_VIDEO_TUNER_TYPES) += tuner-types.o
87 88
88obj-$(CONFIG_TUNER_XC2028) += tuner-xc2028.o 89obj-$(CONFIG_TUNER_XC2028) += tuner-xc2028.o
89obj-$(CONFIG_TUNER_SIMPLE) += tuner-simple.o 90obj-$(CONFIG_TUNER_SIMPLE) += tuner-simple.o