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:
Michael Kubacki
2021-12-05 14:54:05 -08:00
committed by mergify[bot]
parent 1436aea4d5
commit 2f88bd3a12
975 changed files with 55681 additions and 57790 deletions

View File

@@ -13,14 +13,13 @@
#ifndef __EFI_TIME_STAMP_PROTOCOL_H__
#define __EFI_TIME_STAMP_PROTOCOL_H__
#define EFI_TIMESTAMP_PROTOCOL_GUID \
{ 0xafbfde41, 0x2e6e, 0x4262, {0xba, 0x65, 0x62, 0xb9, 0x23, 0x6e, 0x54, 0x95 } }
///
/// Declare forward reference for the Time Stamp Protocol
///
typedef struct _EFI_TIMESTAMP_PROTOCOL EFI_TIMESTAMP_PROTOCOL;
typedef struct _EFI_TIMESTAMP_PROTOCOL EFI_TIMESTAMP_PROTOCOL;
///
/// EFI_TIMESTAMP_PROPERTIES
@@ -29,13 +28,13 @@ typedef struct {
///
/// The frequency of the timestamp counter in Hz.
///
UINT64 Frequency;
UINT64 Frequency;
///
/// The value that the timestamp counter ends with immediately before it rolls over.
/// For example, a 64-bit free running counter would have an EndValue of 0xFFFFFFFFFFFFFFFF.
/// A 24-bit free running counter would have an EndValue of 0xFFFFFF.
///
UINT64 EndValue;
UINT64 EndValue;
} EFI_TIMESTAMP_PROPERTIES;
/**
@@ -77,19 +76,16 @@ EFI_STATUS
OUT EFI_TIMESTAMP_PROPERTIES *Properties
);
///
/// EFI_TIMESTAMP_PROTOCOL
/// The protocol provides a platform independent interface for retrieving a high resolution
/// timestamp counter.
///
struct _EFI_TIMESTAMP_PROTOCOL {
TIMESTAMP_GET GetTimestamp;
TIMESTAMP_GET_PROPERTIES GetProperties;
TIMESTAMP_GET GetTimestamp;
TIMESTAMP_GET_PROPERTIES GetProperties;
};
extern EFI_GUID gEfiTimestampProtocolGuid;
extern EFI_GUID gEfiTimestampProtocolGuid;
#endif