Message ID | 20220414123152.1700-1-oneukum@suse.com |
---|---|
State | New |
Headers | show |
Series | add STRING quirk for VCOM device | expand |
diff --git a/drivers/usb/core/quirks.c b/drivers/usb/core/quirks.c index 8ce8c0d06c66..97b44a68668a 100644 --- a/drivers/usb/core/quirks.c +++ b/drivers/usb/core/quirks.c @@ -510,6 +510,9 @@ static const struct usb_device_id usb_quirk_list[] = { /* DJI CineSSD */ { USB_DEVICE(0x2ca3, 0x0031), .driver_info = USB_QUIRK_NO_LPM }, + /* VCOM device */ + { USB_DEVICE(0x4296, 0x7570), .driver_info = USB_QUIRK_CONFIG_INTF_STRINGS }, + /* INTEL VALUE SSD */ { USB_DEVICE(0x8086, 0xf1a5), .driver_info = USB_QUIRK_RESET_RESUME },
This has been reported to stall if queried Signed-off-by: Oliver Neukum <oneukum@suse.com> --- drivers/usb/core/quirks.c | 3 +++ 1 file changed, 3 insertions(+)