From f88a0ae6d78a0b4dacb3caef6b101b54dff5fc78 Mon Sep 17 00:00:00 2001 From: Bartlomiej Sieka Date: Thu, 13 Jul 2006 15:32:16 +0200 Subject: [PATCH] Fix problems with SanDisk Corporation Cruzer Micro USB memory stick. --- CHANGELOG | 2 ++ common/usb_storage.c | 4 ++++ 2 files changed, 6 insertions(+) diff --git a/CHANGELOG b/CHANGELOG index 0c93027..97e18f5 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -2,6 +2,8 @@ Changes since U-Boot 1.1.4: ====================================================================== +* Fix problems with SanDisk Corporation Cruzer Micro USB memory stick. + * MCC200 board: support console on any one of the Quad UART ports. * Fix error in flash protection calculation on MCC200 board. diff --git a/common/usb_storage.c b/common/usb_storage.c index 99e4ab0..e64470c 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