diff options
author | Takashi Iwai <tiwai@suse.de> | 2008-05-23 10:10:37 -0400 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2008-05-27 09:56:20 -0400 |
commit | 89fe5117928b2c1272c9376362131ded561c91ad (patch) | |
tree | d9ad58546d73efdef4d68ba3c8224a3ee5722576 /sound/usb | |
parent | 06b5fb97cec1a3ca61d10164118b00fe98a6a866 (diff) |
sound: Convert to menuconfig
Convert menu in sound Kconfig files to menuconfig and if.
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/usb')
-rw-r--r-- | sound/usb/Kconfig | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/sound/usb/Kconfig b/sound/usb/Kconfig index 9351b8a765b9..ffcdc8f4ef66 100644 --- a/sound/usb/Kconfig +++ b/sound/usb/Kconfig | |||
@@ -1,11 +1,16 @@ | |||
1 | # ALSA USB drivers | 1 | # ALSA USB drivers |
2 | 2 | ||
3 | menu "USB devices" | 3 | menuconfig SND_USB |
4 | depends on SND!=n && USB!=n | 4 | bool "USB sound devices" |
5 | depends on USB | ||
6 | default y | ||
7 | help | ||
8 | Support for sound devices connected via the USB bus. | ||
9 | |||
10 | if SND_USB && USB | ||
5 | 11 | ||
6 | config SND_USB_AUDIO | 12 | config SND_USB_AUDIO |
7 | tristate "USB Audio/MIDI driver" | 13 | tristate "USB Audio/MIDI driver" |
8 | depends on SND && USB | ||
9 | select SND_HWDEP | 14 | select SND_HWDEP |
10 | select SND_RAWMIDI | 15 | select SND_RAWMIDI |
11 | select SND_PCM | 16 | select SND_PCM |
@@ -18,7 +23,7 @@ config SND_USB_AUDIO | |||
18 | 23 | ||
19 | config SND_USB_USX2Y | 24 | config SND_USB_USX2Y |
20 | tristate "Tascam US-122, US-224 and US-428 USB driver" | 25 | tristate "Tascam US-122, US-224 and US-428 USB driver" |
21 | depends on SND && USB && (X86 || PPC || ALPHA) | 26 | depends on X86 || PPC || ALPHA |
22 | select SND_HWDEP | 27 | select SND_HWDEP |
23 | select SND_RAWMIDI | 28 | select SND_RAWMIDI |
24 | select SND_PCM | 29 | select SND_PCM |
@@ -31,7 +36,6 @@ config SND_USB_USX2Y | |||
31 | 36 | ||
32 | config SND_USB_CAIAQ | 37 | config SND_USB_CAIAQ |
33 | tristate "Native Instruments USB audio devices" | 38 | tristate "Native Instruments USB audio devices" |
34 | depends on SND && USB | ||
35 | select SND_HWDEP | 39 | select SND_HWDEP |
36 | select SND_RAWMIDI | 40 | select SND_RAWMIDI |
37 | select SND_PCM | 41 | select SND_PCM |
@@ -63,5 +67,5 @@ config SND_USB_CAIAQ_INPUT | |||
63 | * Native Instruments Kore Controller 2 | 67 | * Native Instruments Kore Controller 2 |
64 | * Native Instruments Audio Kontrol 1 | 68 | * Native Instruments Audio Kontrol 1 |
65 | 69 | ||
66 | endmenu | 70 | endif # SND_USB |
67 | 71 | ||