From: Matt Colyer Date: Wed, 29 Aug 2007 06:33:52 +0000 (-0700) Subject: USB: Add iPhone device id to the quirk list. X-Git-Tag: v3.12-rc1~26960^2~13 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a74108d33878078b9403e5426a04c54683a8ebc2;p=kernel%2Fkernel-generic.git USB: Add iPhone device id to the quirk list. --- diff --git a/drivers/usb/core/quirks.c b/drivers/usb/core/quirks.c index 9e46711..a5cde8b 100644 --- a/drivers/usb/core/quirks.c +++ b/drivers/usb/core/quirks.c @@ -87,6 +87,9 @@ static const struct usb_device_id usb_quirk_list[] = { { USB_DEVICE(0x0fca, 0x0004), .driver_info = USB_QUIRK_NO_AUTOSUSPEND }, { USB_DEVICE(0x0fca, 0x0006), .driver_info = USB_QUIRK_NO_AUTOSUSPEND }, + /* Apple iPhone */ + { USB_DEVICE(0x05ac, 0x1290), .driver_info = USB_QUIRK_NO_AUTOSUSPEND }, + { } /* terminating entry must be last */ };