bc12142
commit a218e3649310bd2ee0e8b7ec6353ab029d020289
bc12142
Author: Oliver Neukum <oliver@neukum.org>
bc12142
Date:   Tue Aug 9 08:12:37 2011 -0400
bc12142
bc12142
    USB: quirk for Logitech C250, C270, and C310 webcams
bc12142
    
bc12142
    This need for this was shown by the new PM code
bc12142
    
bc12142
    Signed-off-by: Oliver Neukum <oneukum@suse.de>
bc12142
bc12142
diff --git a/drivers/usb/core/quirks.c b/drivers/usb/core/quirks.c
bc12142
index 81ce6a8..5114281 100644
bc12142
--- a/drivers/usb/core/quirks.c
bc12142
+++ b/drivers/usb/core/quirks.c
bc12142
@@ -41,6 +41,15 @@ static const struct usb_device_id usb_quirk_list[] = {
bc12142
 	/* Logitech Harmony 700-series */
bc12142
 	{ USB_DEVICE(0x046d, 0xc122), .driver_info = USB_QUIRK_DELAY_INIT },
bc12142
 
bc12142
+	/* Logitech Webcam C250 */
bc12142
+	{ USB_DEVICE(0x046d, 0x0804), .driver_info = USB_QUIRK_RESET_RESUME },
bc12142
+
bc12142
+	/* Logitech Webcam C310 */
bc12142
+	{ USB_DEVICE(0x046d, 0x081b), .driver_info = USB_QUIRK_RESET_RESUME },
bc12142
+
bc12142
+	/* Logitech Webcam C270 */
bc12142
+	{ USB_DEVICE(0x046d, 0x0825), .driver_info = USB_QUIRK_RESET_RESUME },
bc12142
+
bc12142
 	/* Philips PSC805 audio device */
bc12142
 	{ USB_DEVICE(0x0471, 0x0155), .driver_info = USB_QUIRK_RESET_RESUME },
bc12142