1. 17 12月, 2009 2 次提交
  2. 01 12月, 2009 1 次提交
  3. 26 11月, 2009 1 次提交
  4. 24 11月, 2009 1 次提交
  5. 18 11月, 2009 1 次提交
  6. 10 11月, 2009 1 次提交
  7. 04 11月, 2009 1 次提交
  8. 24 9月, 2009 1 次提交
  9. 16 7月, 2009 1 次提交
  10. 22 6月, 2009 1 次提交
  11. 28 5月, 2009 1 次提交
  12. 14 4月, 2009 1 次提交
    • T
      ALSA: hda - Avoid call of snd_jack_report at release · 95c09099
      Takashi Iwai 提交于
      Don't call snd_jack_report at release of sigmatel and conexnat codecs
      which results in Oops at unloading the module.
      
      The Oops is triggered by the power-up sequence during the free due to
      the pincfg restoration.  Since the power-up sequence is involved with
      the unsol handling, the jack reporting may be issued during that.
      The Oops occurs with this jack reporting because the jack instances
      have been already released but the codec doesn't do the proper
      book-keeping.
      
      This patch adds the book-keeping of jack instances to avoid the access
      to bogus pointers.
      Signed-off-by: NTakashi Iwai <tiwai@suse.de>
      95c09099
  13. 13 3月, 2009 1 次提交
  14. 12 3月, 2009 2 次提交
  15. 10 3月, 2009 5 次提交
  16. 04 3月, 2009 1 次提交
  17. 13 2月, 2009 1 次提交
  18. 10 2月, 2009 1 次提交
  19. 27 1月, 2009 2 次提交
  20. 03 1月, 2009 2 次提交
  21. 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
  22. 13 10月, 2008 1 次提交
  23. 14 7月, 2008 3 次提交
  24. 10 7月, 2008 1 次提交
  25. 27 6月, 2008 1 次提交
  26. 13 6月, 2008 1 次提交
  27. 24 4月, 2008 4 次提交
    • 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
    • J
      [ALSA] hda-codec - model for cx20549 to support laptop HP530 · 2de3c232
      Jiang zhe 提交于
      Currently the model laptop-hpsense use the 0x12 as ExtMic,
      and use 0x14 as Internal IntMic.
      But the hp530 only have one ExtMic, the Pin widget is 0x14.
      
      In this patch, I changed the mixer item for them.
      I still reserved the IntMic item, it will be helpful if
      other machine may use this model.
      
      ALSA bug#3821.
      Signed-off-by: NJiang zhe <zhe.jiang@intel.com>
      Signed-off-by: NTakashi Iwai <tiwai@suse.de>
      2de3c232
    • 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
    • T
      [ALSA] hda-codec - Add "IEC958 Default PCM" switch · 9a08160b
      Takashi Iwai 提交于
      Added a new mixer switch to enable/disable the sharing of the default
      PCM stream with analog and SPDIF outputs.  When "IEC958 Default PCM"
      switch is on, the PCM stream is routed both to analog and SPDIF outputs.
      This is the behavior in the earlier version.
      
      Turning this switch off has a merit for some codecs, though.  Some codec
      chips don't support 24bit formats for SPDIF but only for analog outputs.
      In this case, you can use 24bit format by disabling this switch.
      Signed-off-by: NTakashi Iwai <tiwai@suse.de>
      9a08160b