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/sh/Kconfig | |
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/sh/Kconfig')
-rw-r--r-- | sound/sh/Kconfig | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/sound/sh/Kconfig b/sound/sh/Kconfig index b7e08ef22a94..cfc143985802 100644 --- a/sound/sh/Kconfig +++ b/sound/sh/Kconfig | |||
@@ -1,14 +1,22 @@ | |||
1 | # ALSA SH drivers | 1 | # ALSA SH drivers |
2 | 2 | ||
3 | menu "SUPERH devices" | 3 | menuconfig SND_SUPERH |
4 | depends on SND!=n && SUPERH | 4 | bool "SUPERH sound devices" |
5 | depends on SUPERH | ||
6 | default y | ||
7 | help | ||
8 | Support for sound devices specific to SUPERH architectures. | ||
9 | Drivers that are implemented on ASoC can be found in | ||
10 | "ALSA for SoC audio support" section. | ||
11 | |||
12 | if SND_SUPERH | ||
5 | 13 | ||
6 | config SND_AICA | 14 | config SND_AICA |
7 | tristate "Dreamcast Yamaha AICA sound" | 15 | tristate "Dreamcast Yamaha AICA sound" |
8 | depends on SH_DREAMCAST && SND | 16 | depends on SH_DREAMCAST |
9 | select SND_PCM | 17 | select SND_PCM |
10 | help | 18 | help |
11 | ALSA Sound driver for the SEGA Dreamcast console. | 19 | ALSA Sound driver for the SEGA Dreamcast console. |
12 | 20 | ||
13 | endmenu | 21 | endif # SND_SUPERH |
14 | 22 | ||