97a1dd5bee
The new ALSA 'SOC' support has bogus Kconfig ... it should not be presenting anything AT91-related except on AT91, or anything PXA-related except on PXA. Right now, x86 sees both of those menus, as do all other platforms. This patch removes needless Kconfig layering, and the related inappropriate choice presentation. Signed-off-by: David Brownell <dbrownell@users.sourceforge.net> Signed-off-by: Takashi Iwai <tiwai@suse.de> Signed-off-by: Jaroslav Kysela <perex@suse.cz>
33 lines
673 B
Plaintext
33 lines
673 B
Plaintext
#
|
|
# SoC audio configuration
|
|
#
|
|
|
|
menu "SoC audio support"
|
|
depends on SND!=n
|
|
|
|
config SND_SOC_AC97_BUS
|
|
bool
|
|
|
|
config SND_SOC
|
|
tristate "SoC audio support"
|
|
depends on SND
|
|
select SND_PCM
|
|
---help---
|
|
|
|
If you want SoC support, you should say Y here and also to the
|
|
specific driver for your SoC below. You will also need to select the
|
|
specific codec(s) attached to the SoC
|
|
|
|
This SoC audio support can also be built as a module. If so, the module
|
|
will be called snd-soc-core.
|
|
|
|
# All the supported Soc's
|
|
source "sound/soc/at91/Kconfig"
|
|
source "sound/soc/pxa/Kconfig"
|
|
source "sound/soc/s3c24xx/Kconfig"
|
|
|
|
# Supported codecs
|
|
source "sound/soc/codecs/Kconfig"
|
|
|
|
endmenu
|