Kconfig 697 B

123456789101112131415161718192021222324252627282930
  1. config SND_HDA_CORE
  2. tristate
  3. select REGMAP
  4. config SND_HDA_DSP_LOADER
  5. bool
  6. config SND_HDA_I915
  7. bool
  8. default y
  9. depends on DRM_I915
  10. depends on SND_HDA_CORE
  11. config SND_HDA_EXT_CORE
  12. tristate
  13. select SND_HDA_CORE
  14. config SND_HDA_PREALLOC_SIZE
  15. int "Pre-allocated buffer size for HD-audio driver"
  16. range 0 32768
  17. default 64
  18. help
  19. Specifies the default pre-allocated buffer-size in kB for the
  20. HD-audio driver. A larger buffer (e.g. 2048) is preferred
  21. for systems using PulseAudio. The default 64 is chosen just
  22. for compatibility reasons.
  23. Note that the pre-allocation size can be changed dynamically
  24. via a proc file (/proc/asound/card*/pcm*/sub*/prealloc), too.