Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

ALSA: snd-usb: add delay quirk for "Playback Design" products

"Playback Design" products need a 50ms delay after setting the USB
interface.

Signed-off-by: Daniel Mack <zonque@gmail.com>
Reported-by: Andreas Koch <andreas@akdesigninc.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>

authored by

Daniel Mack and committed by
Takashi Iwai
0959f22e 717bfb5f

+7
+7
sound/usb/pcm.c
··· 350 350 fmt->iface, fmt->altsetting); 351 351 subs->interface = fmt->iface; 352 352 subs->altset_idx = fmt->altset_idx; 353 + 354 + /* 355 + * "Playback Design" products need a 50ms delay after setting the 356 + * USB interface. 357 + */ 358 + if (le16_to_cpu(dev->descriptor.idVendor) == 0x23ba) 359 + mdelay(50); 353 360 } 354 361 355 362 subs->data_endpoint = snd_usb_add_endpoint(subs->stream->chip,