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/soc/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/soc/Kconfig')
-rw-r--r-- | sound/soc/Kconfig | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/sound/soc/Kconfig b/sound/soc/Kconfig index 18f28ac4bfe8..fd7bc4f89072 100644 --- a/sound/soc/Kconfig +++ b/sound/soc/Kconfig | |||
@@ -2,15 +2,8 @@ | |||
2 | # SoC audio configuration | 2 | # SoC audio configuration |
3 | # | 3 | # |
4 | 4 | ||
5 | menu "System on Chip audio support" | 5 | menuconfig SND_SOC |
6 | depends on SND!=n | ||
7 | |||
8 | config SND_SOC_AC97_BUS | ||
9 | bool | ||
10 | |||
11 | config SND_SOC | ||
12 | tristate "ALSA for SoC audio support" | 6 | tristate "ALSA for SoC audio support" |
13 | depends on SND | ||
14 | select SND_PCM | 7 | select SND_PCM |
15 | ---help--- | 8 | ---help--- |
16 | 9 | ||
@@ -23,6 +16,11 @@ config SND_SOC | |||
23 | This ASoC audio support can also be built as a module. If so, the module | 16 | This ASoC audio support can also be built as a module. If so, the module |
24 | will be called snd-soc-core. | 17 | will be called snd-soc-core. |
25 | 18 | ||
19 | if SND_SOC | ||
20 | |||
21 | config SND_SOC_AC97_BUS | ||
22 | bool | ||
23 | |||
26 | # All the supported Soc's | 24 | # All the supported Soc's |
27 | source "sound/soc/at91/Kconfig" | 25 | source "sound/soc/at91/Kconfig" |
28 | source "sound/soc/pxa/Kconfig" | 26 | source "sound/soc/pxa/Kconfig" |
@@ -35,4 +33,5 @@ source "sound/soc/omap/Kconfig" | |||
35 | # Supported codecs | 33 | # Supported codecs |
36 | source "sound/soc/codecs/Kconfig" | 34 | source "sound/soc/codecs/Kconfig" |
37 | 35 | ||
38 | endmenu | 36 | endif # SND_SOC |
37 | |||