Kconfig 773 B

12345678910111213141516171819202122232425262728293031323334
  1. #
  2. # SoC audio configuration
  3. #
  4. menu "System on Chip audio support"
  5. depends on SND!=n
  6. config SND_SOC_AC97_BUS
  7. bool
  8. config SND_SOC
  9. tristate "ALSA for SoC audio support"
  10. depends on SND
  11. select SND_PCM
  12. ---help---
  13. If you want ASoC support, you should say Y here and also to the
  14. specific driver for your SoC platform below.
  15. ASoC provides power efficient ALSA support for embedded battery powered
  16. SoC based systems like PDA's, Phones and Personal Media Players.
  17. This ASoC audio support can also be built as a module. If so, the module
  18. will be called snd-soc-core.
  19. # All the supported Soc's
  20. source "sound/soc/at91/Kconfig"
  21. source "sound/soc/pxa/Kconfig"
  22. source "sound/soc/s3c/Kconfig"
  23. # Supported codecs
  24. source "sound/soc/codecs/Kconfig"
  25. endmenu