diff options
Diffstat (limited to 'sound/usb/quirks.c')
-rw-r--r-- | sound/usb/quirks.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/sound/usb/quirks.c b/sound/usb/quirks.c index 2c971858d6b7..7d7ad0b0620e 100644 --- a/sound/usb/quirks.c +++ b/sound/usb/quirks.c | |||
@@ -863,13 +863,14 @@ void snd_usb_endpoint_start_quirk(struct snd_usb_endpoint *ep) | |||
863 | ep->skip_packets = 4; | 863 | ep->skip_packets = 4; |
864 | 864 | ||
865 | /* | 865 | /* |
866 | * M-Audio Fast Track C400 - when packets are not skipped, real world | 866 | * M-Audio Fast Track C400/C600 - when packets are not skipped, real |
867 | * latency varies by approx. +/- 50 frames (at 96KHz) each time the | 867 | * world latency varies by approx. +/- 50 frames (at 96KHz) each time |
868 | * stream is (re)started. When skipping packets 16 at endpoint start | 868 | * the stream is (re)started. When skipping packets 16 at endpoint |
869 | * up, the real world latency is stable within +/- 1 frame (also | 869 | * start up, the real world latency is stable within +/- 1 frame (also |
870 | * across power cycles). | 870 | * across power cycles). |
871 | */ | 871 | */ |
872 | if (ep->chip->usb_id == USB_ID(0x0763, 0x2030) && | 872 | if ((ep->chip->usb_id == USB_ID(0x0763, 0x2030) || |
873 | ep->chip->usb_id == USB_ID(0x0763, 0x2031)) && | ||
873 | ep->type == SND_USB_ENDPOINT_TYPE_DATA) | 874 | ep->type == SND_USB_ENDPOINT_TYPE_DATA) |
874 | ep->skip_packets = 16; | 875 | ep->skip_packets = 16; |
875 | } | 876 | } |