diff options
author | Matt Colyer <matt@colyer.name> | 2007-08-29 02:33:52 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2007-09-11 10:48:14 -0400 |
commit | a74108d33878078b9403e5426a04c54683a8ebc2 (patch) | |
tree | e35355caaaaec4b1c80d1b3b576f986eceea344b /drivers/usb | |
parent | d7fde2d6729482e093b18a74fc24c4c2c0c61ca5 (diff) |
USB: Add iPhone device id to the quirk list.
Diffstat (limited to 'drivers/usb')
-rw-r--r-- | drivers/usb/core/quirks.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/usb/core/quirks.c b/drivers/usb/core/quirks.c index 9e467118dc94..a5cde8ba1655 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[] = { | |||
87 | { USB_DEVICE(0x0fca, 0x0004), .driver_info = USB_QUIRK_NO_AUTOSUSPEND }, | 87 | { USB_DEVICE(0x0fca, 0x0004), .driver_info = USB_QUIRK_NO_AUTOSUSPEND }, |
88 | { USB_DEVICE(0x0fca, 0x0006), .driver_info = USB_QUIRK_NO_AUTOSUSPEND }, | 88 | { USB_DEVICE(0x0fca, 0x0006), .driver_info = USB_QUIRK_NO_AUTOSUSPEND }, |
89 | 89 | ||
90 | /* Apple iPhone */ | ||
91 | { USB_DEVICE(0x05ac, 0x1290), .driver_info = USB_QUIRK_NO_AUTOSUSPEND }, | ||
92 | |||
90 | { } /* terminating entry must be last */ | 93 | { } /* terminating entry must be last */ |
91 | }; | 94 | }; |
92 | 95 | ||