1. 18 12月, 2009 1 次提交
  2. 24 11月, 2009 1 次提交
  3. 08 9月, 2009 1 次提交
  4. 11 8月, 2009 1 次提交
  5. 10 8月, 2009 1 次提交
  6. 15 7月, 2009 1 次提交
  7. 09 6月, 2009 1 次提交
    • D
      ALSA: usb - Add boot quirk for C-Media 6206 USB Audio · 92a43793
      Dan Allongo 提交于
      Added boot quirk for C-Media CM6206 device in snd_usb_audio_probe.
      The function snd_usb_cm6206_boot_quirk sets up six internal 16-bit
      registers in order to initialize the device. Values for the registers
      came from sniffing USB traffic under Windows since only four of the six
      are documented in the datasheet for CM106 and some reserved bits were
      also being set.
      
      [Minor coding-style fixes by tiwai]
      Signed-off-by: NDan Allongo <gongo2k1@gmail.com>
      Signed-off-by: NTakashi Iwai <tiwai@suse.de>
      92a43793
  8. 27 5月, 2009 1 次提交
  9. 05 5月, 2009 1 次提交
  10. 07 4月, 2009 4 次提交
  11. 02 3月, 2009 2 次提交
  12. 20 2月, 2009 1 次提交
  13. 17 2月, 2009 2 次提交
  14. 06 2月, 2009 1 次提交
  15. 05 2月, 2009 1 次提交
  16. 27 1月, 2009 4 次提交
  17. 12 1月, 2009 1 次提交
  18. 02 1月, 2009 1 次提交
    • J
      ALSA: Use usb_set/get_intfdata · f4e9749f
      Julia Lawall 提交于
      Use the USB functions usb_get_intfdata and usb_set_intfdata instead of
      dev_get_drvdata and dev_set_drvdata, respectively.
      
      The semantic patch that makes this change for the usb_get_intfdata case is
      as follows: (http://www.emn.fr/x-info/coccinelle/)
      
      // <smpl>
      @header@
      @@
      
      #include <linux/usb.h>
      
      @same depends on header@
      position p;
      @@
      
      usb_get_intfdata@p(...) { ... }
      
      @depends on header@
      position _p!=same.p;
      identifier _f;
      struct usb_interface*intf;
      @@
      
      _f@_p(...) { <+...
      - dev_get_drvdata(&intf->dev)
      + usb_get_intfdata(intf)
      ...+> }
      // </smpl>
      Signed-off-by: NJulia Lawall <julia@diku.dk>
      Signed-off-by: NTakashi Iwai <tiwai@suse.de>
      f4e9749f
  19. 10 10月, 2008 3 次提交
  20. 15 8月, 2008 1 次提交
  21. 13 8月, 2008 1 次提交
  22. 06 6月, 2008 1 次提交
  23. 24 4月, 2008 5 次提交
  24. 11 3月, 2008 1 次提交
  25. 29 2月, 2008 1 次提交
  26. 01 2月, 2008 1 次提交
    • T
      [ALSA] Remove sound/driver.h · 9004acc7
      Takashi Iwai 提交于
      This header file exists only for some hacks to adapt alsa-driver
      tree.  It's useless for building in the kernel.  Let's move a few
      lines in it to sound/core.h and remove it.
      With this patch, sound/driver.h isn't removed but has just a single
      compile warning to include it.  This should be really killed in
      future.
      Signed-off-by: NTakashi Iwai <tiwai@suse.de>
      Signed-off-by: NJaroslav Kysela <perex@perex.cz>
      9004acc7