From: Trent Piepho Date: Fri, 13 Apr 2007 19:23:11 +0000 (+0200) Subject: V4L: radio: Fix error in Kbuild file X-Git-Tag: v2.6.16.48~9 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9c38858ad17d961762deb032d7e9737589cae3a2;p=thirdparty%2Fkernel%2Fstable.git V4L: radio: Fix error in Kbuild file 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. (cherry picked from commit b10fece583fdfdb3d2f29b0da3896ec58b8fe122) Signed-off-by: Trent Piepho Signed-off-by: Michael Krufky Signed-off-by: Adrian Bunk --- diff --git a/drivers/media/radio/Kconfig b/drivers/media/radio/Kconfig index d318be383de6a..1a6501c30c21f 100644 --- a/drivers/media/radio/Kconfig +++ b/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"