forked from tianocore/edk2
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
EmulatorPkg/PeiTimerLib: Bug fix in NanoSecondDelay
REF: https://bugzilla.tianocore.org/show_bug.cgi?id=4339 Thunk->Sleep is expecting nanoseconds, no need to multiply by 100. Cc: Andrew Fish <[email protected]> Cc: Ray Ni <[email protected]> Signed-off-by: Deric Cole <[email protected]> Reviewed-by: Michael D Kinney <[email protected]> Reviewed-by: Ray Ni <[email protected]>
- Loading branch information
1 parent
b59e6fd
commit f6ce1a5
Showing
2 changed files
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -130,7 +130,7 @@ UINT64 | |
typedef | ||
VOID | ||
(EFIAPI *EMU_SLEEP)( | ||
IN UINT64 Milliseconds | ||
IN UINT64 Nanoseconds | ||
); | ||
|
||
typedef | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters