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

@@ -39,15 +39,15 @@ typedef struct {
///
/// Index of the packet.
///
UINT16 PacketIndex;
UINT16 PacketIndex;
///
/// The number of active records in the packet.
///
UINT16 RecordIndex;
UINT16 RecordIndex;
///
/// The maximum number of records that the packet can store.
///
UINT32 MaxRecordsNumber;
UINT32 MaxRecordsNumber;
} MEMORY_STATUSCODE_PACKET_HEADER;
///
@@ -58,15 +58,15 @@ typedef struct {
///
/// The index pointing to the last recored being stored.
///
UINT32 RecordIndex;
UINT32 RecordIndex;
///
/// The number of records being stored.
///
UINT32 NumberOfRecords;
UINT32 NumberOfRecords;
///
/// The maximum number of records that can be stored.
///
UINT32 MaxRecordsNumber;
UINT32 MaxRecordsNumber;
} RUNTIME_MEMORY_STATUSCODE_HEADER;
///
@@ -77,21 +77,21 @@ typedef struct {
///
/// Status Code type to be reported.
///
EFI_STATUS_CODE_TYPE CodeType;
EFI_STATUS_CODE_TYPE CodeType;
///
/// An operation, plus value information about the class and subclass, used to
/// classify the hardware and software entity.
///
EFI_STATUS_CODE_VALUE Value;
EFI_STATUS_CODE_VALUE Value;
///
/// The enumeration of a hardware or software entity within
/// the system. Valid instance numbers start with the number 1.
///
UINT32 Instance;
UINT32 Instance;
} MEMORY_STATUSCODE_RECORD;
extern EFI_GUID gMemoryStatusCodeRecordGuid;
extern EFI_GUID gMemoryStatusCodeRecordGuid;
#endif