aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/media/video/Kconfig3
-rw-r--r--drivers/media/video/Makefile4
2 files changed, 3 insertions, 4 deletions
diff --git a/drivers/media/video/Kconfig b/drivers/media/video/Kconfig
index bb072ab5f09b..9dcbffd0aa15 100644
--- a/drivers/media/video/Kconfig
+++ b/drivers/media/video/Kconfig
@@ -490,7 +490,8 @@ config TUNER_3036
490 If in doubt, say N. 490 If in doubt, say N.
491 491
492config TUNER_TEA5761 492config TUNER_TEA5761
493 tristate "TEA 5761 radio tuner (EXPERIMENTAL)" 493 bool "TEA 5761 radio tuner (EXPERIMENTAL)"
494 depends on EXPERIMENTAL
494 depends on I2C 495 depends on I2C
495 select VIDEO_TUNER 496 select VIDEO_TUNER
496 help 497 help
diff --git a/drivers/media/video/Makefile b/drivers/media/video/Makefile
index 4cddc8cbd341..10b4d4469016 100644
--- a/drivers/media/video/Makefile
+++ b/drivers/media/video/Makefile
@@ -7,9 +7,7 @@ zr36067-objs := zoran_procfs.o zoran_device.o \
7tuner-objs := tuner-core.o tuner-types.o tuner-simple.o \ 7tuner-objs := tuner-core.o tuner-types.o tuner-simple.o \
8 mt20xx.o tda8290.o tea5767.o tda9887.o 8 mt20xx.o tda8290.o tea5767.o tda9887.o
9 9
10ifneq ($(CONFIG_TUNER_TEA5761),) 10tuner-$(CONFIG_TUNER_TEA5761) += tea5761.o
11 tuner-objs += tea5761.o
12endif
13 11
14msp3400-objs := msp3400-driver.o msp3400-kthreads.o 12msp3400-objs := msp3400-driver.o msp3400-kthreads.o
15 13