summaryrefslogtreecommitdiff
path: root/MdeModulePkg/Bus/Pci/UhciDxe/UhciSched.c
diff options
context:
space:
mode:
authorRyan Harkin <ryan.harkin@linaro.org>2013-09-19 13:01:48 +0100
committerRyan Harkin <ryan.harkin@linaro.org>2013-09-19 13:01:48 +0100
commitcad230532f8dd53d993c9631dc574f4b196e8e99 (patch)
tree74084743cc55c30fe59f85b0f4e9e89d6ec8e6f5 /MdeModulePkg/Bus/Pci/UhciDxe/UhciSched.c
parentfe29a8a877edb5f8495c1da34f98c023e0e9be45 (diff)
parent2e4c39a43c92d4e99140c3735a4091029797780e (diff)
Merging uefi-next/linaro-release into masterlinaro-uefi-2013.09
Signed-off-by: Ryan Harkin <ryan.harkin@linaro.org>
Diffstat (limited to 'MdeModulePkg/Bus/Pci/UhciDxe/UhciSched.c')
-rw-r--r--MdeModulePkg/Bus/Pci/UhciDxe/UhciSched.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/MdeModulePkg/Bus/Pci/UhciDxe/UhciSched.c b/MdeModulePkg/Bus/Pci/UhciDxe/UhciSched.c
index 0d97bccab..af3f4e5ec 100644
--- a/MdeModulePkg/Bus/Pci/UhciDxe/UhciSched.c
+++ b/MdeModulePkg/Bus/Pci/UhciDxe/UhciSched.c
@@ -2,7 +2,7 @@
The EHCI register operation routines.
-Copyright (c) 2007 - 2011, Intel Corporation. All rights reserved.<BR>
+Copyright (c) 2007 - 2013, Intel Corporation. All rights reserved.<BR>
This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License
which accompanies this distribution. The full text of the license may be found at
@@ -580,7 +580,7 @@ UhciExecuteTransfer (
Finished = FALSE;
Status = EFI_SUCCESS;
- Delay = (TimeOut * UHC_1_MILLISECOND / UHC_SYNC_POLL_INTERVAL) + 1;
+ Delay = TimeOut * UHC_1_MILLISECOND;
InfiniteLoop = FALSE;
//
@@ -602,7 +602,7 @@ UhciExecuteTransfer (
break;
}
- gBS->Stall (UHC_SYNC_POLL_INTERVAL);
+ gBS->Stall (UHC_1_MICROSECOND);
}
if (!Finished) {