From 3a4301edeed5642bebd9b6f23505edec1715ad68 Mon Sep 17 00:00:00 2001 From: William Wu Date: Mon, 29 Jan 2018 11:15:44 +0800 Subject: [PATCH] usb: quirks: add device quirk for HD Camera PID 0x9320 The commit 62b2a34a214c ("uvcvideo: add quirk for devices with broken auto suspend") introduced quirk to workaround an issue with some HD Cameras. There is one more model that has the same issue - idProduct =0x9320, so applying the same quirk as well. Change-Id: I24e3fc1746a9d21d529bc91f52fd5822e998bd93 Signed-off-by: William Wu Signed-off-by: Frank Wang --- drivers/usb/core/quirks.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/usb/core/quirks.c b/drivers/usb/core/quirks.c index d799e93b9a0d..a01b84fb3bed 100644 --- a/drivers/usb/core/quirks.c +++ b/drivers/usb/core/quirks.c @@ -324,6 +324,7 @@ static const struct usb_device_id usb_quirk_list[] = { /* HD Camera Manufacturer */ { USB_DEVICE(0x05a3, 0x9230), .driver_info = USB_QUIRK_AUTO_SUSPEND }, + { USB_DEVICE(0x05a3, 0x9320), .driver_info = USB_QUIRK_AUTO_SUSPEND }, /* appletouch */ { USB_DEVICE(0x05ac, 0x021a), .driver_info = USB_QUIRK_RESET_RESUME },