diff options
| author | Bartlomiej Sieka <tur@semihalf.com> | 2006-07-13 15:32:16 +0200 | 
|---|---|---|
| committer | Bartlomiej Sieka <tur@semihalf.com> | 2006-07-13 15:32:16 +0200 | 
| commit | f88a0ae6d78a0b4dacb3caef6b101b54dff5fc78 (patch) | |
| tree | c4ad9d1542811b1de90dd91bb747a0c7f0757328 | |
| parent | 87791f3bf2bad751054c98c390e2a0265036de1c (diff) | |
| download | olio-uboot-2014.01-f88a0ae6d78a0b4dacb3caef6b101b54dff5fc78.tar.xz olio-uboot-2014.01-f88a0ae6d78a0b4dacb3caef6b101b54dff5fc78.zip | |
Fix problems with SanDisk Corporation Cruzer Micro USB memory stick.
| -rw-r--r-- | CHANGELOG | 2 | ||||
| -rw-r--r-- | common/usb_storage.c | 4 | 
2 files changed, 6 insertions, 0 deletions
| @@ -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 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 |