1. 27 12月, 2009 2 次提交
  2. 16 11月, 2009 5 次提交
  3. 09 7月, 2009 1 次提交
  4. 29 6月, 2009 1 次提交
  5. 19 5月, 2009 1 次提交
  6. 06 2月, 2009 1 次提交
  7. 12 1月, 2009 1 次提交
    • T
      ALSA: hda - Use own workqueue · 6acaed38
      Takashi Iwai 提交于
      snd-hda-intel driver used schedule_work() fot the delayed DMA pointer
      updates, but this has several potential problems:
      - it may block other eventsd works longer
      - it may deadlock when probing fails and flush_scheduled_work() is
        called during probe callback (as probe callback itself could be
        invoked from eventd)
      
      This patch adds an own workq for each driver instance to solve these
      problems.
      Signed-off-by: NTakashi Iwai <tiwai@suse.de>
      6acaed38
  8. 28 11月, 2008 1 次提交
    • T
      ALSA: hda - Don't export symbols when built-in kernel · ff7a3267
      Takashi Iwai 提交于
      The global functions in hda_codec.c and other core parts are only
      for HD-audio codec and controller drivers.  When the HD-audio driver
      is built in kernel, all stuff have to be statically linked, thus
      we don't need any exports.
      
      This patch introduces a conditional macro to do export only
      when needed.
      Signed-off-by: NTakashi Iwai <tiwai@suse.de>
      ff7a3267
  9. 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
  10. 13 11月, 2008 2 次提交
  11. 30 7月, 2008 1 次提交
  12. 21 7月, 2008 1 次提交