diff options
author | Mauro Carvalho Chehab <mchehab@infradead.org> | 2008-04-03 20:08:04 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2008-04-06 17:13:20 -0300 |
commit | a80c5aa6da485da63def31442a19cdd6ff495ce6 (patch) | |
tree | de4d3f84c7a324b30a4ee9ccf8238c75c4c6b1d1 /drivers/media | |
parent | 8e08af3c30b4e5f59adff0baa33fd346227b45e2 (diff) | |
download | linux-3.10-a80c5aa6da485da63def31442a19cdd6ff495ce6.tar.gz linux-3.10-a80c5aa6da485da63def31442a19cdd6ff495ce6.tar.bz2 linux-3.10-a80c5aa6da485da63def31442a19cdd6ff495ce6.zip |
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')
-rw-r--r-- | drivers/media/Makefile | 3 |
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 |