MdePkg: Apply uncrustify changes
REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3737 Apply uncrustify changes to .c/.h files in the MdePkg package Cc: Andrew Fish <afish@apple.com> Cc: Leif Lindholm <leif@nuviainc.com> Cc: Michael D Kinney <michael.d.kinney@intel.com> Signed-off-by: Michael Kubacki <michael.kubacki@microsoft.com> Reviewed-by: Liming Gao <gaoliming@byosoft.com.cn>
This commit is contained in:
committed by
mergify[bot]
parent
1436aea4d5
commit
2f88bd3a12
@ -15,16 +15,16 @@
|
||||
//
|
||||
// BOOLEAN value to indicate if it is at the post ExitBootServices pahse
|
||||
//
|
||||
BOOLEAN mPostEBS = FALSE;
|
||||
BOOLEAN mPostEBS = FALSE;
|
||||
|
||||
static EFI_EVENT mExitBootServicesEvent;
|
||||
static EFI_EVENT mExitBootServicesEvent;
|
||||
|
||||
//
|
||||
// Pointer to SystemTable
|
||||
// This library instance may have a cycle consume with UefiBootServicesTableLib
|
||||
// because of the constructors.
|
||||
//
|
||||
EFI_BOOT_SERVICES *mDebugBS;
|
||||
EFI_BOOT_SERVICES *mDebugBS;
|
||||
|
||||
/**
|
||||
This routine sets the mPostEBS for exit boot servies true
|
||||
@ -37,8 +37,8 @@ EFI_BOOT_SERVICES *mDebugBS;
|
||||
VOID
|
||||
EFIAPI
|
||||
ExitBootServicesCallback (
|
||||
EFI_EVENT Event,
|
||||
VOID* Context
|
||||
EFI_EVENT Event,
|
||||
VOID *Context
|
||||
)
|
||||
{
|
||||
mPostEBS = TRUE;
|
||||
@ -57,9 +57,9 @@ ExitBootServicesCallback (
|
||||
**/
|
||||
EFI_STATUS
|
||||
EFIAPI
|
||||
DxeDebugLibConstructor(
|
||||
IN EFI_HANDLE ImageHandle,
|
||||
IN EFI_SYSTEM_TABLE *SystemTable
|
||||
DxeDebugLibConstructor (
|
||||
IN EFI_HANDLE ImageHandle,
|
||||
IN EFI_SYSTEM_TABLE *SystemTable
|
||||
)
|
||||
{
|
||||
mDebugBS = SystemTable->BootServices;
|
||||
@ -86,9 +86,9 @@ DxeDebugLibConstructor(
|
||||
**/
|
||||
EFI_STATUS
|
||||
EFIAPI
|
||||
DxeDebugLibDestructor(
|
||||
IN EFI_HANDLE ImageHandle,
|
||||
IN EFI_SYSTEM_TABLE *SystemTable
|
||||
DxeDebugLibDestructor (
|
||||
IN EFI_HANDLE ImageHandle,
|
||||
IN EFI_SYSTEM_TABLE *SystemTable
|
||||
)
|
||||
{
|
||||
if (mExitBootServicesEvent != NULL) {
|
||||
|
Reference in New Issue
Block a user