Nico Huber ([email protected]) just uploaded a new patch set to gerrit, 
which you can find at http://review.coreboot.org/1071

-gerrit

commit 3e0c6641a94dbcb652f9283b4b769c56c0d9829a
Author: Nico Huber <[email protected]>
Date:   Mon May 21 14:01:52 2012 +0200

    libpayload: Remove orphaned delay from USB mass storage
    
    This removes a synthetic delay of 10ms from every mass storage command.
    A delay here seems to be of no use and first tests have only shown a
    huge speed increase.
    
    Change-Id: Ida7423229373ec521d4326c5467a3f518b76149c
    Signed-off-by: Nico Huber <[email protected]>
---
 payloads/libpayload/drivers/usb/usbmsc.c |    1 -
 1 files changed, 0 insertions(+), 1 deletions(-)

diff --git a/payloads/libpayload/drivers/usb/usbmsc.c 
b/payloads/libpayload/drivers/usb/usbmsc.c
index e19b2a6..8d57736 100644
--- a/payloads/libpayload/drivers/usb/usbmsc.c
+++ b/payloads/libpayload/drivers/usb/usbmsc.c
@@ -194,7 +194,6 @@ execute_command (usbdev_t *dev, cbw_direction dir, const u8 
*cb, int cblen,
                reset_transport (dev);
                return 1;
        }
-       mdelay (10);
        if (buflen > 0) {
                if (dir == cbw_direction_data_in) {
                        if (dev->controller->

-- 
coreboot mailing list: [email protected]
http://www.coreboot.org/mailman/listinfo/coreboot

Reply via email to