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