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