diff options
author | Trent Piepho <xyzzy@speakeasy.org> | 2007-03-07 13:19:46 -0800 |
---|---|---|
committer | Trent Piepho <xyzzy@speakeasy.org> | 2007-03-07 13:19:46 -0800 |
commit | 619d181536889dc77843fa0d1aa3862e0d91f588 (patch) | |
tree | 4100033ee47c18ff91eed78d598ebd3c7b75c6d5 | |
parent | 4e57858b4689a02757e246ec672d91743bfe2bfb (diff) | |
download | mediapointer-dvb-s2-619d181536889dc77843fa0d1aa3862e0d91f588.tar.gz mediapointer-dvb-s2-619d181536889dc77843fa0d1aa3862e0d91f588.tar.bz2 |
radio: Fix error in Kbuild file
From: Trent Piepho <xyzzy@speakeasy.org>
All the radio drivers need video_dev, but they were depending on
VIDEO_DEV!=n. That meant that one could try to compile the driver into
the kernel when VIDEO_DEV=m, which will not work. If video_dev is a
module, then the radio drivers must be modules too.
Signed-off-by: Trent Piepho <xyzzy@speakeasy.org>
-rw-r--r-- | linux/drivers/media/radio/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux/drivers/media/radio/Kconfig b/linux/drivers/media/radio/Kconfig index 6d96b17a7..4ab38a851 100644 --- a/linux/drivers/media/radio/Kconfig +++ b/linux/drivers/media/radio/Kconfig @@ -3,7 +3,7 @@ # menu "Radio Adapters" - depends on VIDEO_DEV!=n + depends on VIDEO_DEV config RADIO_CADET tristate "ADS Cadet AM/FM Tuner" |