summaryrefslogtreecommitdiffstats
path: root/MdePkg/Include/Ppi/DelayedDispatch.h
diff options
context:
space:
mode:
Diffstat (limited to 'MdePkg/Include/Ppi/DelayedDispatch.h')
-rw-r--r--MdePkg/Include/Ppi/DelayedDispatch.h15
1 files changed, 5 insertions, 10 deletions
diff --git a/MdePkg/Include/Ppi/DelayedDispatch.h b/MdePkg/Include/Ppi/DelayedDispatch.h
index 195c5a36a4..f9b4fed30f 100644
--- a/MdePkg/Include/Ppi/DelayedDispatch.h
+++ b/MdePkg/Include/Ppi/DelayedDispatch.h
@@ -18,7 +18,6 @@
0x869c711d, 0x649c, 0x44fe, { 0x8b, 0x9e, 0x2c, 0xbb, 0x29, 0x11, 0xc3, 0xe6} } \
}
-
/**
Delayed Dispatch function. This routine is called sometime after the required
delay. Upon return, if NewDelay is 0, the function is unregistered. If NewDelay
@@ -31,18 +30,16 @@
typedef
VOID
-(EFIAPI *EFI_DELAYED_DISPATCH_FUNCTION) (
+(EFIAPI *EFI_DELAYED_DISPATCH_FUNCTION)(
IN OUT UINT64 *Context,
- OUT UINT32 *NewDelay
+ OUT UINT32 *NewDelay
);
-
///
/// The forward declaration for EFI_DELAYED_DISPATCH_PPI
///
-typedef struct _EFI_DELAYED_DISPATCH_PPI EFI_DELAYED_DISPATCH_PPI;
-
+typedef struct _EFI_DELAYED_DISPATCH_PPI EFI_DELAYED_DISPATCH_PPI;
/**
Register a callback to be called after a minimum delay has occurred.
@@ -68,7 +65,6 @@ EFI_STATUS
OUT UINT32 Delay
);
-
///
/// This PPI is a pointer to the Delayed Dispatch Service.
/// This service will be published by the Pei Foundation. The PEI Foundation
@@ -76,10 +72,9 @@ EFI_STATUS
/// execution.
///
struct _EFI_DELAYED_DISPATCH_PPI {
- EFI_DELAYED_DISPATCH_REGISTER Register;
+ EFI_DELAYED_DISPATCH_REGISTER Register;
};
-
-extern EFI_GUID gEfiPeiDelayedDispatchPpiGuid;
+extern EFI_GUID gEfiPeiDelayedDispatchPpiGuid;
#endif