Skip to content

Commit 4ee02e2

Browse files
hahnjotiwai
authored andcommitted
ALSA: usb-audio: Correct quirk for VF0770
This device provides both audio and video. The original quirk added in commit 48827e1 ("ALSA: usb-audio: Add quirk for VF0770") used USB_DEVICE to match the vendor and product ID. Depending on module order, if snd-usb-audio was asked first, it would match the entire device and uvcvideo wouldn't get to see it. Change the matching to USB_AUDIO_DEVICE to restore uvcvideo matching in all cases. Fixes: 48827e1 ("ALSA: usb-audio: Add quirk for VF0770") Reported-by: Jukka Heikintalo <[email protected]> Tested-by: Jukka Heikintalo <[email protected]> Reported-by: Paweł Susicki <[email protected]> Tested-by: Paweł Susicki <[email protected]> Cc: <[email protected]> # 5.4, 5.10, 5.14, 5.15 Signed-off-by: Jonas Hahnfeld <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Takashi Iwai <[email protected]>
1 parent ff4865b commit 4ee02e2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sound/usb/quirks-table.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@
8484
* combination.
8585
*/
8686
{
87-
USB_DEVICE(0x041e, 0x4095),
87+
USB_AUDIO_DEVICE(0x041e, 0x4095),
8888
.driver_info = (unsigned long) &(const struct snd_usb_audio_quirk) {
8989
.ifnum = QUIRK_ANY_INTERFACE,
9090
.type = QUIRK_COMPOSITE,

0 commit comments

Comments
 (0)