1. 23 Feb, 2010 1 commit
  2. 06 Jan, 2010 1 commit
  3. 08 Sep, 2009 1 commit
  4. 11 Aug, 2009 1 commit
  5. 10 Aug, 2009 1 commit
  6. 15 Jul, 2009 1 commit
  7. 08 Jun, 2009 1 commit
    • Dan Allongo's avatar
      ALSA: usb - Add boot quirk for C-Media 6206 USB Audio · 92a43793
      Dan Allongo authored
      
      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: default avatarDan Allongo <gongo2k1@gmail.com>
      Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
      92a43793
  8. 27 May, 2009 1 commit
  9. 05 May, 2009 1 commit
  10. 07 Apr, 2009 4 commits
  11. 02 Mar, 2009 2 commits
  12. 20 Feb, 2009 1 commit
  13. 16 Feb, 2009 2 commits
  14. 06 Feb, 2009 1 commit
  15. 05 Feb, 2009 1 commit
  16. 27 Jan, 2009 1 commit
  17. 26 Jan, 2009 3 commits
  18. 12 Jan, 2009 1 commit
  19. 02 Jan, 2009 1 commit
    • Julia Lawall's avatar
      ALSA: Use usb_set/get_intfdata · f4e9749f
      Julia Lawall authored
      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: default avatarJulia Lawall <julia@diku.dk>
      Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
      f4e9749f
  20. 10 Oct, 2008 3 commits
  21. 15 Aug, 2008 1 commit
  22. 13 Aug, 2008 1 commit
  23. 06 Jun, 2008 1 commit
  24. 24 Apr, 2008 5 commits
  25. 10 Mar, 2008 1 commit
  26. 29 Feb, 2008 1 commit
  27. 31 Jan, 2008 1 commit
    • Takashi Iwai's avatar
      [ALSA] Remove sound/driver.h · 9004acc7
      Takashi Iwai authored
      
      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: default avatarTakashi Iwai <tiwai@suse.de>
      Signed-off-by: default avatarJaroslav Kysela <perex@perex.cz>
      9004acc7