More USB_QUIRK_RESET_RESUME devices
Lamarque Vieira Souza <[email protected]>
| Newsgroups | gmane.linux.usb.devel |
|---|---|
| Organization | International Syst |
| Message-ID | <[email protected]> |
Hi, 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. -- Lamarque Vieira Souza Senior Architect and Developer - Metasys http://www.metasys.com.br Tel.: +55 31 3296-9040 - Ramal 244 International Syst S/A ------------------------------------------------------------------------- This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to find problems? Stop. Now Search log events and configuration files using AJAX and a browser. Download your FREE copy of Splunk now >> http://get.splunk.com/ _______________________________________________ [email protected] To unsubscribe, use the last form field at: https://lists.sourceforge.net/lists/listinfo/linux-usb-devel
linux-2.6.22-flash_memory_quirks.diff
(text/x-diff, 916 B)
diff -Nru --show-c-function linux-2.6.22-orig/drivers/usb/core/quirks.c linux-2.6.22-flash_memory_quirks/drivers/usb/core/quirks.c
--- linux-2.6.22-orig/drivers/usb/core/quirks.c 2007-08-29 17:27:20.000000000 -0300
+++ linux-2.6.22-flash_memory_quirks/drivers/usb/core/quirks.c 2007-08-29 17:09:29.000000000 -0300
@@ -34,6 +34,12 @@ static const struct usb_device_id usb_qu
{ USB_DEVICE(0x04b8, 0x011f), .driver_info = USB_QUIRK_NO_AUTOSUSPEND },
/* Elsa MicroLink 56k (V.250) */
{ USB_DEVICE(0x05cc, 0x2267), .driver_info = USB_QUIRK_NO_AUTOSUSPEND },
+ /* SKYMEDI USB_DRIVE */
+ { USB_DEVICE(0x1516, 0x8628), .driver_info = USB_QUIRK_RESET_RESUME },
+ /* M-Systems Flash Disk Pioneers */
+ { USB_DEVICE(0x08ec, 0x1000), .driver_info = USB_QUIRK_RESET_RESUME },
+ /* INTEL VALUE SSD */
+ { USB_DEVICE(0x8086, 0xf1a5), .driver_info = USB_QUIRK_RESET_RESUME },
{ } /* terminating entry must be last */
};