diff options
author | Tian Feng <feng.tian@intel.com> | 2015-06-09 03:22:18 +0000 |
---|---|---|
committer | erictian <erictian@Edk2> | 2015-06-09 03:22:18 +0000 |
commit | bfe37a77e09335fce423170ad470dc1117b80c38 (patch) | |
tree | 3a0db0a78860890e2d0e6d83adee4c651a2c9b65 | |
parent | 5a127abadaf964f3c7714da844c925e1a66e1687 (diff) | |
download | edk2-platforms-bfe37a77e09335fce423170ad470dc1117b80c38.tar.xz |
MdeModulePkg/EhciPei: Remove unused macro
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Tian Feng <feng.tian@intel.com>
Reviewed-by: Star Zeng <star.zeng@intel.com>
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@17588 6f19259b-4bc3-4df7-8a09-765794883524
-rw-r--r-- | MdeModulePkg/Bus/Pci/EhciPei/EhcPeim.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/MdeModulePkg/Bus/Pci/EhciPei/EhcPeim.h b/MdeModulePkg/Bus/Pci/EhciPei/EhcPeim.h index fa1671bd8f..74037769a4 100644 --- a/MdeModulePkg/Bus/Pci/EhciPei/EhcPeim.h +++ b/MdeModulePkg/Bus/Pci/EhciPei/EhcPeim.h @@ -1,7 +1,7 @@ /** @file
Private Header file for Usb Host Controller PEIM
-Copyright (c) 2010, Intel Corporation. All rights reserved.<BR>
+Copyright (c) 2010 - 2015, Intel Corporation. All rights reserved.<BR>
This program and the accompanying materials
are licensed and made available under the terms and conditions
@@ -61,13 +61,10 @@ typedef struct _PEI_USB2_HC_DEV PEI_USB2_HC_DEV; #define EHC_ROOT_PORT_RECOVERY_STALL (20 * EHC_1_MILLISECOND)
//
-// Sync and Async transfer polling interval, set by experience,
-// and the unit of Async is 100us, means 50ms as interval.
+// Sync transfer polling interval, set by experience.
//
#define EHC_SYNC_POLL_INTERVAL (6 * EHC_1_MILLISECOND)
-#define EHC_ASYNC_POLL_INTERVAL (50 * 10000U)
-
//
//Iterate through the doule linked list. NOT delete safe
//
|