summaryrefslogtreecommitdiff
path: root/MdeModulePkg/Bus/Usb/UsbBusDxe
diff options
context:
space:
mode:
authoreric_tian <eric_tian@6f19259b-4bc3-4df7-8a09-765794883524>2009-08-19 01:41:43 +0000
committereric_tian <eric_tian@6f19259b-4bc3-4df7-8a09-765794883524>2009-08-19 01:41:43 +0000
commit9420fc148a3a7c4db2904f7aa8c129e3aadab22e (patch)
tree6f720fd7190849454cacae3eea6735a8f1e08823 /MdeModulePkg/Bus/Usb/UsbBusDxe
parent32304af268b7dfcee07de4fc7d18e801f8d4c981 (diff)
downloadedk2-platforms-9420fc148a3a7c4db2904f7aa8c129e3aadab22e.tar.xz
modify the incorrect timeout value definitions in Usb driver
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@9117 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdeModulePkg/Bus/Usb/UsbBusDxe')
-rw-r--r--MdeModulePkg/Bus/Usb/UsbBusDxe/UsbBus.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/MdeModulePkg/Bus/Usb/UsbBusDxe/UsbBus.h b/MdeModulePkg/Bus/Usb/UsbBusDxe/UsbBus.h
index 872f6cef9a..8b6babb08e 100644
--- a/MdeModulePkg/Bus/Usb/UsbBusDxe/UsbBus.h
+++ b/MdeModulePkg/Bus/Usb/UsbBusDxe/UsbBus.h
@@ -101,7 +101,7 @@ typedef enum {
//
// Wait for clear roothub port reset, set by experience
//
- USB_CLR_ROOT_PORT_RESET_STALL = 1 * USB_BUS_1_MILLISECOND,
+ USB_CLR_ROOT_PORT_RESET_STALL = 20 * USB_BUS_1_MILLISECOND,
//
// Wait for set roothub port enable, set by experience
@@ -112,12 +112,12 @@ typedef enum {
// Send general device request timeout, refers to
// specification[USB20-11.24.1]
//
- USB_GENERAL_DEVICE_REQUEST_TIMEOUT = 50 * USB_BUS_1_MILLISECOND,
+ USB_GENERAL_DEVICE_REQUEST_TIMEOUT = 50,
//
// Send clear feature request timeout, set by experience
//
- USB_CLEAR_FEATURE_REQUEST_TIMEOUT = 10 * USB_BUS_1_MILLISECOND
+ USB_CLEAR_FEATURE_REQUEST_TIMEOUT = 10
}USB_BUS_TIMEOUT_EXPERIENCE_VALUE;
//