MdeModulePkg: Apply uncrustify changes

REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3737

Apply uncrustify changes to .c/.h files in the MdeModulePkg 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:
Michael Kubacki
2021-12-05 14:54:02 -08:00
committed by mergify[bot]
parent 7c7184e201
commit 1436aea4d5
994 changed files with 107608 additions and 101311 deletions

View File

@@ -26,8 +26,8 @@ SPDX-License-Identifier: BSD-2-Clause-Patent
**/
BOOLEAN
IsValidVariableHeader (
IN VARIABLE_HEADER *Variable,
IN VARIABLE_HEADER *VariableStoreEnd
IN VARIABLE_HEADER *Variable,
IN VARIABLE_HEADER *VariableStoreEnd
);
/**
@@ -43,7 +43,7 @@ IsValidVariableHeader (
**/
VARIABLE_STORE_STATUS
GetVariableStoreStatus (
IN VARIABLE_STORE_HEADER *VarStoreHeader
IN VARIABLE_STORE_HEADER *VarStoreHeader
);
/**
@@ -57,7 +57,7 @@ GetVariableStoreStatus (
**/
UINTN
GetVariableHeaderSize (
IN BOOLEAN AuthFormat
IN BOOLEAN AuthFormat
);
/**
@@ -73,8 +73,8 @@ GetVariableHeaderSize (
**/
UINTN
NameSizeOfVariable (
IN VARIABLE_HEADER *Variable,
IN BOOLEAN AuthFormat
IN VARIABLE_HEADER *Variable,
IN BOOLEAN AuthFormat
);
/**
@@ -88,9 +88,9 @@ NameSizeOfVariable (
**/
VOID
SetNameSizeOfVariable (
IN VARIABLE_HEADER *Variable,
IN UINTN NameSize,
IN BOOLEAN AuthFormat
IN VARIABLE_HEADER *Variable,
IN UINTN NameSize,
IN BOOLEAN AuthFormat
);
/**
@@ -106,8 +106,8 @@ SetNameSizeOfVariable (
**/
UINTN
DataSizeOfVariable (
IN VARIABLE_HEADER *Variable,
IN BOOLEAN AuthFormat
IN VARIABLE_HEADER *Variable,
IN BOOLEAN AuthFormat
);
/**
@@ -121,9 +121,9 @@ DataSizeOfVariable (
**/
VOID
SetDataSizeOfVariable (
IN VARIABLE_HEADER *Variable,
IN UINTN DataSize,
IN BOOLEAN AuthFormat
IN VARIABLE_HEADER *Variable,
IN UINTN DataSize,
IN BOOLEAN AuthFormat
);
/**
@@ -139,8 +139,8 @@ SetDataSizeOfVariable (
**/
CHAR16 *
GetVariableNamePtr (
IN VARIABLE_HEADER *Variable,
IN BOOLEAN AuthFormat
IN VARIABLE_HEADER *Variable,
IN BOOLEAN AuthFormat
);
/**
@@ -155,8 +155,8 @@ GetVariableNamePtr (
**/
EFI_GUID *
GetVendorGuidPtr (
IN VARIABLE_HEADER *Variable,
IN BOOLEAN AuthFormat
IN VARIABLE_HEADER *Variable,
IN BOOLEAN AuthFormat
);
/**
@@ -172,8 +172,8 @@ GetVendorGuidPtr (
**/
UINT8 *
GetVariableDataPtr (
IN VARIABLE_HEADER *Variable,
IN BOOLEAN AuthFormat
IN VARIABLE_HEADER *Variable,
IN BOOLEAN AuthFormat
);
/**
@@ -188,8 +188,8 @@ GetVariableDataPtr (
**/
UINTN
GetVariableDataOffset (
IN VARIABLE_HEADER *Variable,
IN BOOLEAN AuthFormat
IN VARIABLE_HEADER *Variable,
IN BOOLEAN AuthFormat
);
/**
@@ -205,8 +205,8 @@ GetVariableDataOffset (
**/
VARIABLE_HEADER *
GetNextVariablePtr (
IN VARIABLE_HEADER *Variable,
IN BOOLEAN AuthFormat
IN VARIABLE_HEADER *Variable,
IN BOOLEAN AuthFormat
);
/**
@@ -220,7 +220,7 @@ GetNextVariablePtr (
**/
VARIABLE_HEADER *
GetStartPointer (
IN VARIABLE_STORE_HEADER *VarStoreHeader
IN VARIABLE_STORE_HEADER *VarStoreHeader
);
/**
@@ -237,7 +237,7 @@ GetStartPointer (
**/
VARIABLE_HEADER *
GetEndPointer (
IN VARIABLE_STORE_HEADER *VarStoreHeader
IN VARIABLE_STORE_HEADER *VarStoreHeader
);
/**
@@ -253,8 +253,8 @@ GetEndPointer (
**/
BOOLEAN
VariableCompareTimeStampInternal (
IN EFI_TIME *FirstTime,
IN EFI_TIME *SecondTime
IN EFI_TIME *FirstTime,
IN EFI_TIME *SecondTime
);
/**
@@ -304,11 +304,11 @@ FindVariableEx (
EFI_STATUS
EFIAPI
VariableServiceGetNextVariableInternal (
IN CHAR16 *VariableName,
IN EFI_GUID *VendorGuid,
IN VARIABLE_STORE_HEADER **VariableStoreList,
OUT VARIABLE_HEADER **VariablePtr,
IN BOOLEAN AuthFormat
IN CHAR16 *VariableName,
IN EFI_GUID *VendorGuid,
IN VARIABLE_STORE_HEADER **VariableStoreList,
OUT VARIABLE_HEADER **VariablePtr,
IN BOOLEAN AuthFormat
);
/**