summaryrefslogtreecommitdiff
path: root/EmulatorPkg/Include
diff options
context:
space:
mode:
authorDeric Cole <deric.cole@intel.com>2023-02-08 08:41:03 -0800
committermergify[bot] <37929162+mergify[bot]@users.noreply.github.com>2023-02-09 02:04:37 +0000
commitf6ce1a5cd8932844ec24701d158254ccf75b6159 (patch)
tree3cd1767baa68e7c538b0bc1f56dae6f5e985b613 /EmulatorPkg/Include
parentb59e6fdae2545b45c36c8c5373f4b858fb83c8cd (diff)
downloadedk2-f6ce1a5cd8932844ec24701d158254ccf75b6159.zip
edk2-f6ce1a5cd8932844ec24701d158254ccf75b6159.tar.gz
edk2-f6ce1a5cd8932844ec24701d158254ccf75b6159.tar.bz2
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 <afish@apple.com> Cc: Ray Ni <ray.ni@intel.com> Signed-off-by: Deric Cole <deric.cole@intel.com> Reviewed-by: Michael D Kinney <michael.d.kinney@intel.com> Reviewed-by: Ray Ni <ray.ni@intel.com>
Diffstat (limited to 'EmulatorPkg/Include')
-rw-r--r--EmulatorPkg/Include/Protocol/EmuThunk.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/EmulatorPkg/Include/Protocol/EmuThunk.h b/EmulatorPkg/Include/Protocol/EmuThunk.h
index b720023..c419d0a 100644
--- a/EmulatorPkg/Include/Protocol/EmuThunk.h
+++ b/EmulatorPkg/Include/Protocol/EmuThunk.h
@@ -130,7 +130,7 @@ UINT64
typedef
VOID
(EFIAPI *EMU_SLEEP)(
- IN UINT64 Milliseconds
+ IN UINT64 Nanoseconds
);
typedef