Skip to content

Commit 48d6b91

Browse files
knueseltiwai
authored andcommitted
ALSA: usb-audio: Increase delay in MOTU M quirk
Increase the quirk delay from 2 seconds to 4 seconds. This reflects a change in the Windows driver in which the delay was increased to about 3.7 seconds. The larger delay fixes an issue where the device fails to work unless it was powered up early during boot. Also clarify in the quirk comment that the quirk is only applied to older devices (USB ID 07fd:0008). Signed-off-by: Jeremie Knuesel <[email protected]> Suggested-by: Alexander Tsoy <[email protected]> Cc: <[email protected]> Link: https://bugzilla.kernel.org/show_bug.cgi?id=211975 Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Takashi Iwai <[email protected]>
1 parent ec1de5c commit 48d6b91

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sound/usb/quirks.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1387,7 +1387,7 @@ static int snd_usb_motu_microbookii_boot_quirk(struct usb_device *dev)
13871387

13881388
static int snd_usb_motu_m_series_boot_quirk(struct usb_device *dev)
13891389
{
1390-
msleep(2000);
1390+
msleep(4000);
13911391

13921392
return 0;
13931393
}
@@ -1630,7 +1630,7 @@ int snd_usb_apply_boot_quirk_once(struct usb_device *dev,
16301630
unsigned int id)
16311631
{
16321632
switch (id) {
1633-
case USB_ID(0x07fd, 0x0008): /* MOTU M Series */
1633+
case USB_ID(0x07fd, 0x0008): /* MOTU M Series, 1st hardware version */
16341634
return snd_usb_motu_m_series_boot_quirk(dev);
16351635
}
16361636

0 commit comments

Comments
 (0)