aboutsummaryrefslogtreecommitdiff
path: root/common/usb_storage.c
diff options
context:
space:
mode:
authorBartlomiej Sieka <tur@semihalf.com>2006-07-13 15:32:16 +0200
committerBartlomiej Sieka <tur@semihalf.com>2006-07-13 15:32:16 +0200
commitf88a0ae6d78a0b4dacb3caef6b101b54dff5fc78 (patch)
treec4ad9d1542811b1de90dd91bb747a0c7f0757328 /common/usb_storage.c
parent87791f3bf2bad751054c98c390e2a0265036de1c (diff)
Fix problems with SanDisk Corporation Cruzer Micro USB memory stick.
Diffstat (limited to 'common/usb_storage.c')
-rw-r--r--common/usb_storage.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/common/usb_storage.c b/common/usb_storage.c
index 99e4ab0d2..e64470cb9 100644
--- a/common/usb_storage.c
+++ b/common/usb_storage.c
@@ -1139,6 +1139,10 @@ int usb_stor_get_info(struct usb_device *dev,struct us_data *ss,block_dev_desc_t
/* USB007 Mini-USB2 Flash Drive */
(dev->descriptor.idVendor == 0x066f &&
dev->descriptor.idProduct == 0x2010)
+ ||
+ /* SanDisk Corporation Cruzer Micro 20044318410546613953 */
+ (dev->descriptor.idVendor == 0x0781 &&
+ dev->descriptor.idProduct == 0x5151)
)
USB_STOR_PRINTF("usb_stor_get_info: skipping RESET..\n");
else