diff options
author | Lamarque Vieira Souza <lamarque@syst.com.br> | 2007-09-04 11:15:08 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2007-09-11 10:48:16 -0400 |
commit | 86833691c21efba661bd3512d2ebfa0b96c011c5 (patch) | |
tree | 797b0dff9e2e4cf3ced739e90dc0f9d66dcd2854 /drivers/usb | |
parent | c4766560e4d3e2a9c10d69d7d618dc2b0082a3dc (diff) |
USB: More USB_QUIRK_RESET_RESUME devices
I would like have the attached patch added to Linux kernel. The three
usb flash memories listed in the patch are being used in Intel's
ClassmatePC and need USB_QUIRK_RESET_RESUME to work reliably when
resuming from ram.
Diffstat (limited to 'drivers/usb')
-rw-r--r-- | drivers/usb/core/quirks.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/drivers/usb/core/quirks.c b/drivers/usb/core/quirks.c index 1766a2d4e091..25453d6a59ea 100644 --- a/drivers/usb/core/quirks.c +++ b/drivers/usb/core/quirks.c | |||
@@ -76,6 +76,12 @@ static const struct usb_device_id usb_quirk_list[] = { | |||
76 | /* Genesys USB-to-IDE */ | 76 | /* Genesys USB-to-IDE */ |
77 | { USB_DEVICE(0x0503, 0x0702), .driver_info = USB_QUIRK_NO_AUTOSUSPEND }, | 77 | { USB_DEVICE(0x0503, 0x0702), .driver_info = USB_QUIRK_NO_AUTOSUSPEND }, |
78 | 78 | ||
79 | /* INTEL VALUE SSD */ | ||
80 | { USB_DEVICE(0x8086, 0xf1a5), .driver_info = USB_QUIRK_RESET_RESUME }, | ||
81 | |||
82 | /* M-Systems Flash Disk Pioneers */ | ||
83 | { USB_DEVICE(0x08ec, 0x1000), .driver_info = USB_QUIRK_RESET_RESUME }, | ||
84 | |||
79 | /* Agfa Snapscan1212u */ | 85 | /* Agfa Snapscan1212u */ |
80 | { USB_DEVICE(0x06bd, 0x2061), .driver_info = USB_QUIRK_NO_AUTOSUSPEND }, | 86 | { USB_DEVICE(0x06bd, 0x2061), .driver_info = USB_QUIRK_NO_AUTOSUSPEND }, |
81 | /* Seagate RSS LLC */ | 87 | /* Seagate RSS LLC */ |
@@ -100,6 +106,9 @@ static const struct usb_device_id usb_quirk_list[] = { | |||
100 | /* Apple iPhone */ | 106 | /* Apple iPhone */ |
101 | { USB_DEVICE(0x05ac, 0x1290), .driver_info = USB_QUIRK_NO_AUTOSUSPEND }, | 107 | { USB_DEVICE(0x05ac, 0x1290), .driver_info = USB_QUIRK_NO_AUTOSUSPEND }, |
102 | 108 | ||
109 | /* SKYMEDI USB_DRIVE */ | ||
110 | { USB_DEVICE(0x1516, 0x8628), .driver_info = USB_QUIRK_RESET_RESUME }, | ||
111 | |||
103 | { } /* terminating entry must be last */ | 112 | { } /* terminating entry must be last */ |
104 | }; | 113 | }; |
105 | 114 | ||