Kconfig 654 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. ---help---
  11. If you want SoC support, you should say Y here and also to the
  12. specific driver for your SoC below. You will also need to select the
  13. specific codec(s) attached to the SoC
  14. This SoC audio support can also be built as a module. If so, the module
  15. will be called snd-soc-core.
  16. # All the supported Soc's
  17. menu "SoC Platforms"
  18. depends on SND_SOC
  19. source "sound/soc/at91/Kconfig"
  20. source "sound/soc/pxa/Kconfig"
  21. endmenu
  22. # Supported codecs
  23. source "sound/soc/codecs/Kconfig"
  24. endmenu