diff mbox

[U-Boot] Remove unnecessary reset request in usb_stor_get_info

Message ID 1300972692-26627-1-git-send-email-erik@makarta.com
State Accepted
Commit 56887e27aee57db866a877e60a9141caa32d4636
Delegated to: Remy Bohmer
Headers show

Commit Message

Erik Hansen March 24, 2011, 1:18 p.m. UTC
The reset request in usb_stor_get_info is causing issues with some usb
sticks. Some of these sticks vendor_id/product_id have been hardcoded to
not reset but better is to remove the reset altogether. It is not needed.
---
 common/usb_storage.c |   25 -------------------------
 1 files changed, 0 insertions(+), 25 deletions(-)

Comments

Wolfgang Denk March 24, 2011, 8:16 p.m. UTC | #1
Dear Erik Hansen,

In message <1300972692-26627-1-git-send-email-erik@makarta.com> you wrote:
> The reset request in usb_stor_get_info is causing issues with some usb
> sticks. Some of these sticks vendor_id/product_id have been hardcoded to
> not reset but better is to remove the reset altogether. It is not needed.
> ---
>  common/usb_storage.c |   25 -------------------------
>  1 files changed, 0 insertions(+), 25 deletions(-)


Please do NOT post multiple versions of patches without explicitly
marking these as new versions and not without adding a list of
changes.

Make sure to read
http://www.denx.de/wiki/view/U-Boot/Patches#Sending_updated_patch_versions

Best regards,

Wolfgang Denk
Wolfgang Denk March 24, 2011, 8:17 p.m. UTC | #2
Dear Erik Hansen,

In message <1300972692-26627-1-git-send-email-erik@makarta.com> you wrote:
...
> Reply-to: qeha@ws038732.localdomain

Please make sure to fix your broken mailer setup!!!

NEVER add such crap to any messages that leave your systems.

Best regards,

Wolfgang Denk
diff mbox

Patch

diff --git a/common/usb_storage.c b/common/usb_storage.c
index 1e6cd6a..6963e6d 100644
--- a/common/usb_storage.c
+++ b/common/usb_storage.c
@@ -1346,31 +1346,6 @@  int usb_stor_get_info(struct usb_device *dev, struct us_data *ss,
 	unsigned long *capacity, *blksz;
 	ccb *pccb = &usb_ccb;
 
-	/* for some reasons a couple of devices would not survive this reset */
-	if (
-	    /* Sony USM256E */
-	    (dev->descriptor.idVendor == 0x054c &&
-	     dev->descriptor.idProduct == 0x019e)
-	    ||
-	    /* 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)
-	    ||
-	    /*
-	     * SanDisk Corporation U3 Cruzer Micro 1/4GB
-	     * Flash Drive 000016244373FFB4
-	     */
-	    (dev->descriptor.idVendor == 0x0781 &&
-	     dev->descriptor.idProduct == 0x5406)
-	    )
-		USB_STOR_PRINTF("usb_stor_get_info: skipping RESET..\n");
-	else
-		ss->transport_reset(ss);
-
 	pccb->pdata = usb_stor_buf;
 
 	dev_desc->target = dev->devnum;