diff options
author | Jan Engelhardt <jengelh@linux01.gwdg.de> | 2007-05-02 09:06:23 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2007-05-09 09:12:39 -0400 |
commit | c5da5afb9d7b244cfe3334c77e90b4296cf5f263 (patch) | |
tree | c71a9e4bcd123296b2fe6882788a83a8f72f9452 /drivers/media/radio | |
parent | 480b55c26e2f6408e86f22a69fcecc29e019e819 (diff) |
V4L/DVB (5586): Use menuconfig objects II - V4L
Change Kconfig objects from "menu, config" into "menuconfig" so
that the user can disable the whole feature without having to
enter the menu first.
Signed-off-by: Jan Engelhardt <jengelh@gmx.de>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media/radio')
-rw-r--r-- | drivers/media/radio/Kconfig | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/drivers/media/radio/Kconfig b/drivers/media/radio/Kconfig index af66a5d5ecd8..354d664ca537 100644 --- a/drivers/media/radio/Kconfig +++ b/drivers/media/radio/Kconfig | |||
@@ -2,8 +2,12 @@ | |||
2 | # Multimedia Video device configuration | 2 | # Multimedia Video device configuration |
3 | # | 3 | # |
4 | 4 | ||
5 | menu "Radio Adapters" | 5 | menuconfig RADIO_ADAPTERS |
6 | bool "Radio Adapters" | ||
6 | depends on VIDEO_DEV | 7 | depends on VIDEO_DEV |
8 | default y | ||
9 | |||
10 | if RADIO_ADAPTERS | ||
7 | 11 | ||
8 | config RADIO_CADET | 12 | config RADIO_CADET |
9 | tristate "ADS Cadet AM/FM Tuner" | 13 | tristate "ADS Cadet AM/FM Tuner" |
@@ -328,4 +332,5 @@ config USB_DSBR | |||
328 | 332 | ||
329 | To compile this driver as a module, choose M here: the | 333 | To compile this driver as a module, choose M here: the |
330 | module will be called dsbr100. | 334 | module will be called dsbr100. |
331 | endmenu | 335 | |
336 | endif # RADIO_ADAPTERS | ||