1. 07 4月, 2009 1 次提交
  2. 26 2月, 2009 1 次提交
  3. 23 2月, 2009 1 次提交
  4. 20 2月, 2009 1 次提交
  5. 16 2月, 2009 1 次提交
  6. 13 2月, 2009 2 次提交
  7. 12 2月, 2009 1 次提交
  8. 10 2月, 2009 1 次提交
  9. 07 2月, 2009 1 次提交
  10. 05 2月, 2009 2 次提交
  11. 23 1月, 2009 4 次提交
  12. 07 1月, 2009 2 次提交
  13. 10 12月, 2008 1 次提交
  14. 27 11月, 2008 1 次提交
    • T
      ALSA: hda - Modularize HD-audio driver · 1289e9e8
      Takashi Iwai 提交于
      Split the monolithc HD-audio driver into several pieces:
       - snd-hda-intel   HD-audio PCI controller driver; loaded via udev
       - snd-hda-codec   HD-audio codec bus driver
       - snd-hda-codec-* Specific HD-audio codec drivers
      
      When built as modules, snd-hda-codec (that is invoked by snd-hda-intel)
      looks up the codec vendor ID and loads the corresponding codec module
      automatically via request_module().
      
      When built in a kernel, each codec drivers are statically hooked up
      before probing the PCI.
      
      This patch adds appropriate EXPORT_SYMBOL_GPL()'s and the module
      information for each driver, and driver-linking codes between
      codec-bus and codec drivers.
      
      TODO:
        - Avoid EXPORT_SYMBOL*() when built-in kernel
        - Restore __devinit appropriately depending on the condition
      Signed-off-by: NTakashi Iwai <tiwai@suse.de>
      1289e9e8
  15. 21 11月, 2008 1 次提交
  16. 11 11月, 2008 1 次提交
  17. 09 11月, 2008 1 次提交
  18. 28 10月, 2008 1 次提交
  19. 13 10月, 2008 1 次提交
  20. 23 9月, 2008 3 次提交
  21. 25 8月, 2008 1 次提交
  22. 13 8月, 2008 1 次提交
  23. 10 7月, 2008 1 次提交
  24. 18 6月, 2008 1 次提交
  25. 13 6月, 2008 1 次提交
  26. 30 5月, 2008 1 次提交
  27. 25 5月, 2008 1 次提交
  28. 24 4月, 2008 5 次提交
    • T
      [ALSA] hda - Fix Thinkpad X300 digital mic · 05808ecc
      Takashi Iwai 提交于
      TP X300 digital mic requires additional init verbs with magic COEFs.
      Signed-off-by: NTakashi Iwai <tiwai@suse.de>
      05808ecc
    • T
      [ALSA] hda - Add support of AD1989A/AD1989B · 3adb8abc
      Takashi Iwai 提交于
      Added the support of AD1989A and AD1989B codecs.
      These codecs can have multiple SPDIF devices, but currently we handle
      only one SPDIF.  If any real devices with two SPDIF interfaces (likely
      one for SPDIF and one for HDMI), we'll fix this rightly.
      
      Otherwise, these codecs are pretty similar with AD1988.
      Signed-off-by: NTakashi Iwai <tiwai@suse.de>
      3adb8abc
    • T
      [ALSA] hda-codec - Support of Lenovo Thinkpad X300 · f081374b
      Takashi Iwai 提交于
      Added the model thinkpad for Lenovo Thinkpad X300 with AD1984A codec.
      Signed-off-by: NTakashi Iwai <tiwai@suse.de>
      f081374b
    • T
      [ALSA] hda-codec - keep the format verb at closing PCM streams · 888afa15
      Takashi Iwai 提交于
      Keep the format verb at closing PCM streams.
      Introduced snd_hda_codec_cleanup_stream() for the parcicular purpose.
      Signed-off-by: NTakashi Iwai <tiwai@suse.de>
      888afa15
    • H
      [ALSA] sound: hda: missing includes of hda_patch.h · 3c9a3203
      Harvey Harrison 提交于
      Move the array declaration to hda_codec.c where it is used and add includes
      where the individual presets are declared.
      
      Fixes the following sparse warnings:
      sound/pci/hda/patch_realtek.c:13744:25: warning: symbol 'snd_hda_preset_realtek' was not declared. Should it be static?
      sound/pci/hda/patch_cmedia.c:729:25: warning: symbol 'snd_hda_preset_cmedia' was not declared. Should it be static?
      sound/pci/hda/patch_analog.c:3656:25: warning: symbol 'snd_hda_preset_analog' was not declared. Should it be static?
      sound/pci/hda/patch_sigmatel.c:3995:25: warning: symbol 'snd_hda_preset_sigmatel' was not declared. Should it be static?
      sound/pci/hda/patch_si3054.c:286:25: warning: symbol 'snd_hda_preset_si3054' was not declared. Should it be static?
      sound/pci/hda/patch_atihdmi.c:156:25: warning: symbol 'snd_hda_preset_atihdmi' was not declared. Should it be static?
      sound/pci/hda/patch_conexant.c:1721:25: warning: symbol 'snd_hda_preset_conexant' was not declared. Should it be static?
      sound/pci/hda/patch_via.c:1962:25: warning: symbol 'snd_hda_preset_via' was not declared. Should it be static?
      Signed-off-by: NHarvey Harrison <harvey.harrison@gmail.com>
      Signed-off-by: NTakashi Iwai <tiwai@suse.de>
      3c9a3203