linux/sound/arm/Kconfig
<<
>>
Prefs
   1# ALSA ARM drivers
   2
   3menuconfig SND_ARM
   4        bool "ARM sound devices"
   5        depends on ARM
   6        default y
   7        help
   8          Support for sound devices specific to ARM architectures.
   9          Drivers that are implemented on ASoC can be found in
  10          "ALSA for SoC audio support" section.
  11
  12if SND_ARM
  13
  14config SND_ARMAACI
  15        tristate "ARM PrimeCell PL041 AC Link support"
  16        depends on ARM_AMBA
  17        select SND_PCM
  18        select SND_AC97_CODEC
  19
  20config SND_PXA2XX_PCM
  21        tristate
  22        select SND_PCM
  23
  24config SND_PXA2XX_LIB
  25        tristate
  26        select SND_AC97_CODEC if SND_PXA2XX_LIB_AC97
  27
  28config SND_PXA2XX_LIB_AC97
  29        bool
  30
  31config SND_PXA2XX_AC97
  32        tristate "AC97 driver for the Intel PXA2xx chip"
  33        depends on ARCH_PXA
  34        select SND_PXA2XX_PCM
  35        select SND_AC97_CODEC
  36        select SND_PXA2XX_LIB
  37        select SND_PXA2XX_LIB_AC97
  38        help
  39          Say Y or M if you want to support any AC97 codec attached to
  40          the PXA2xx AC97 interface.
  41
  42endif   # SND_ARM
  43
  44