Kconfig 993 B

123456789101112131415161718192021222324252627282930313233343536
  1. # ALSA PowerMac drivers
  2. menu "ALSA PowerMac devices"
  3. depends on SND!=n && PPC
  4. comment "ALSA PowerMac requires I2C"
  5. depends on SND && I2C=n
  6. comment "ALSA PowerMac requires INPUT"
  7. depends on SND && INPUT=n
  8. config SND_POWERMAC
  9. tristate "PowerMac (AWACS, DACA, Burgundy, Tumbler, Keywest)"
  10. depends on SND && I2C && INPUT && PPC_PMAC
  11. select SND_PCM
  12. select SND_GENERIC_DRIVER
  13. help
  14. Say Y here to include support for the integrated sound device.
  15. To compile this driver as a module, choose M here: the module
  16. will be called snd-powermac.
  17. config SND_POWERMAC_AUTO_DRC
  18. bool "Toggle DRC automatically at headphone/line plug-in"
  19. depends on SND_POWERMAC
  20. default y
  21. help
  22. Say Y here to enable the automatic toggle of DRC (dynamic
  23. range compression) on Tumbler/Snapper.
  24. If this feature is enabled, DRC is turned off when the
  25. headphone/line jack is plugged, and turned on when unplugged.
  26. Note that you can turn on/off DRC manually even without this
  27. option.
  28. endmenu