Kconfig 673 B

1234567891011121314151617181920212223242526272829303132
  1. #
  2. # SoC audio configuration
  3. #
  4. menu "SoC audio support"
  5. depends on SND!=n
  6. config SND_SOC_AC97_BUS
  7. bool
  8. config SND_SOC
  9. tristate "SoC audio support"
  10. depends on SND
  11. select SND_PCM
  12. ---help---
  13. If you want SoC support, you should say Y here and also to the
  14. specific driver for your SoC below. You will also need to select the
  15. specific codec(s) attached to the SoC
  16. This SoC audio support can also be built as a module. If so, the module
  17. will be called snd-soc-core.
  18. # All the supported Soc's
  19. source "sound/soc/at91/Kconfig"
  20. source "sound/soc/pxa/Kconfig"
  21. source "sound/soc/s3c24xx/Kconfig"
  22. # Supported codecs
  23. source "sound/soc/codecs/Kconfig"
  24. endmenu