diff options
author | Daniel Mack <daniel@zonque.org> | 2016-08-22 09:53:37 +0300 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2016-08-22 12:39:56 +0300 |
commit | ca0dd2736a05d1df94c8657b4865f9d6c6637085 (patch) | |
tree | 8692a34c087448112b450e241d1ccb41934b46a5 /sound/usb/endpoint.c | |
parent | 9abc134167249ded16a8c776813121609610f119 (diff) | |
download | linux-ca0dd2736a05d1df94c8657b4865f9d6c6637085.tar.xz |
ALSA: usb: use TEAC UD-H01 quirk for more devices
The quirk seems to be necessary not only for TEAC UD-H01 devices, but to
more that are based on the Tenor 8802TL chipset. Devices built by T+A
are affected too, and they apparently all use the same USB PID:PID.
Extend the quirky handling for that device as well, and rename the
quirks flag.
Reported-and-tested-by: Thomas Gresens <T.Gresens@intershop.de>
Signed-off-by: Daniel Mack <daniel@zonque.org>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/usb/endpoint.c')
-rw-r--r-- | sound/usb/endpoint.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sound/usb/endpoint.c b/sound/usb/endpoint.c index 4b4ffa0adb88..c317a8d530cc 100644 --- a/sound/usb/endpoint.c +++ b/sound/usb/endpoint.c @@ -1167,9 +1167,10 @@ void snd_usb_handle_sync_urb(struct snd_usb_endpoint *ep, if (f == 0) return; - if (unlikely(sender->udh01_fb_quirk)) { + if (unlikely(sender->tenor_fb_quirk)) { /* - * The TEAC UD-H01 firmware sometimes changes the feedback value + * Devices based on Tenor 8802 chipsets (TEAC UD-H01 + * and others) sometimes change the feedback value * by +/- 0x1.0000. */ if (f < ep->freqn - 0x8000) |