summaryrefslogtreecommitdiff
path: root/MdeModulePkg/Core/Dxe/Misc/Stall.c
diff options
context:
space:
mode:
Diffstat (limited to 'MdeModulePkg/Core/Dxe/Misc/Stall.c')
-rw-r--r--MdeModulePkg/Core/Dxe/Misc/Stall.c29
1 files changed, 11 insertions, 18 deletions
diff --git a/MdeModulePkg/Core/Dxe/Misc/Stall.c b/MdeModulePkg/Core/Dxe/Misc/Stall.c
index db32c1f..8ab48e6 100644
--- a/MdeModulePkg/Core/Dxe/Misc/Stall.c
+++ b/MdeModulePkg/Core/Dxe/Misc/Stall.c
@@ -20,29 +20,22 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
#include <DxeMain.h>
-EFI_STATUS
-EFIAPI
-CoreStall (
- IN UINTN Microseconds
- )
-/*++
-
-Routine Description:
+/**
Introduces a fine-grained stall.
-Arguments:
-
- Microseconds The number of microseconds to stall execution
-
-Returns:
+ @param Microseconds The number of microseconds to stall execution.
- EFI_SUCCESS - Execution was stalled for at least the requested amount
- of microseconds.
+ @retval EFI_SUCCESS Execution was stalled for at least the requested
+ amount of microseconds.
+ @retval EFI_NOT_AVAILABLE_YET gMetronome is not available yet
- EFI_NOT_AVAILABLE_YET - gMetronome is not available yet
-
---*/
+**/
+EFI_STATUS
+EFIAPI
+CoreStall (
+ IN UINTN Microseconds
+ )
{
UINT32 Counter;
UINT32 Remainder;