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
This commit is contained in:
eric_tian
2009-08-19 01:41:43 +00:00
parent 32304af268
commit 9420fc148a
3 changed files with 5 additions and 5 deletions

View File

@@ -64,7 +64,7 @@ typedef enum {
// Sync and Async transfer polling interval, set by experience,
// and the unit of Async is 100us, means 50ms as interval.
//
EHC_SYNC_POLL_INTERVAL = 20 * EHC_1_MICROSECOND,
EHC_SYNC_POLL_INTERVAL = 1 * EHC_1_MILLISECOND,
EHC_ASYNC_POLL_INTERVAL = 50 * 10000U
} EHC_TIMEOUT_EXPERIENCE_VALUE;