aboutsummaryrefslogtreecommitdiff
path: root/drivers/media/Makefile
diff options
context:
space:
mode:
authorMauro Carvalho Chehab <mchehab@infradead.org>2008-04-03 20:08:04 -0300
committerMauro Carvalho Chehab <mchehab@infradead.org>2008-04-06 17:13:20 -0300
commita80c5aa6da485da63def31442a19cdd6ff495ce6 (patch)
treede4d3f84c7a324b30a4ee9ccf8238c75c4c6b1d1 /drivers/media/Makefile
parent8e08af3c30b4e5f59adff0baa33fd346227b45e2 (diff)
V4L/DVB (7499): v4l/dvb Kconfig: Fix bugzilla #10067
tda8290 breaks if tuner is selected, but CONFIG_DVB=n. Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media/Makefile')
-rw-r--r--drivers/media/Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/media/Makefile b/drivers/media/Makefile
index 8cf91353b56..7b8bb6949f5 100644
--- a/drivers/media/Makefile
+++ b/drivers/media/Makefile
@@ -6,3 +6,6 @@ obj-y := common/
obj-y += video/
obj-$(CONFIG_VIDEO_DEV) += radio/
obj-$(CONFIG_DVB_CORE) += dvb/
+ifeq ($(CONFIG_DVB_CORE),)
+ obj-$(CONFIG_VIDEO_TUNER) += dvb/frontends/
+endif