summaryrefslogtreecommitdiffstats
path: root/MdePkg/Library/BaseS3StallLib/S3StallLib.c
diff options
context:
space:
mode:
Diffstat (limited to 'MdePkg/Library/BaseS3StallLib/S3StallLib.c')
-rw-r--r--MdePkg/Library/BaseS3StallLib/S3StallLib.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/MdePkg/Library/BaseS3StallLib/S3StallLib.c b/MdePkg/Library/BaseS3StallLib/S3StallLib.c
index f1f3388442..ea886ca61c 100644
--- a/MdePkg/Library/BaseS3StallLib/S3StallLib.c
+++ b/MdePkg/Library/BaseS3StallLib/S3StallLib.c
@@ -16,7 +16,6 @@
#include <Library/S3BootScriptLib.h>
#include <Library/S3StallLib.h>
-
/**
Stalls the CPU for at least the given number of microseconds and and saves
the value in the S3 script to be replayed on S3 resume.
@@ -31,15 +30,13 @@
UINTN
EFIAPI
S3Stall (
- IN UINTN MicroSeconds
+ IN UINTN MicroSeconds
)
{
- RETURN_STATUS Status;
+ RETURN_STATUS Status;
Status = S3BootScriptSaveStall (MicroSecondDelay (MicroSeconds));
ASSERT (Status == RETURN_SUCCESS);
return MicroSeconds;
}
-
-