Skip to content

Commit ab96add

Browse files
dheitmuellergregkh
authored andcommitted
Add USB quirk for HVR-950q to avoid intermittent device resets
commit 6836796de4019944f4ba4c99a360e8250fd2e735 upstream. The USB core and sysfs will attempt to enumerate certain parameters which are unsupported by the au0828 - causing inconsistent behavior and sometimes causing the chip to reset. Avoid making these calls. This problem manifested as intermittent cases where the au8522 would be reset on analog video startup, in particular when starting up ALSA audio streaming in parallel - the sysfs entries created by snd-usb-audio on streaming startup would result in unsupported control messages being sent during tuning which would put the chip into an unknown state. Signed-off-by: Devin Heitmueller <dheitmueller@kernellabs.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1 parent 45c73d0 commit ab96add

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

drivers/usb/core/quirks.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -223,6 +223,10 @@ static const struct usb_device_id usb_quirk_list[] = {
223223
/* Blackmagic Design UltraStudio SDI */
224224
{ USB_DEVICE(0x1edb, 0xbd4f), .driver_info = USB_QUIRK_NO_LPM },
225225

226+
/* Hauppauge HVR-950q */
227+
{ USB_DEVICE(0x2040, 0x7200), .driver_info =
228+
USB_QUIRK_CONFIG_INTF_STRINGS },
229+
226230
/* INTEL VALUE SSD */
227231
{ USB_DEVICE(0x8086, 0xf1a5), .driver_info = USB_QUIRK_RESET_RESUME },
228232

0 commit comments

Comments
 (0)