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

@@ -16,7 +16,7 @@
#ifndef __PCD_INFO_PPI_H__
#define __PCD_INFO_PPI_H__
extern EFI_GUID gGetPcdInfoPpiGuid;
extern EFI_GUID gGetPcdInfoPpiGuid;
#define GET_PCD_INFO_PPI_GUID \
{ 0x4d8b155b, 0xc059, 0x4c8f, { 0x89, 0x26, 0x6, 0xfd, 0x43, 0x31, 0xdb, 0x8a } }
@@ -24,7 +24,7 @@ extern EFI_GUID gGetPcdInfoPpiGuid;
///
/// The forward declaration for GET_PCD_INFO_PPI.
///
typedef struct _GET_PCD_INFO_PPI GET_PCD_INFO_PPI;
typedef struct _GET_PCD_INFO_PPI GET_PCD_INFO_PPI;
/**
Retrieve additional information associated with a PCD token in the default token space.
@@ -40,10 +40,10 @@ typedef struct _GET_PCD_INFO_PPI GET_PCD_INFO_PPI;
**/
typedef
EFI_STATUS
(EFIAPI *GET_PCD_INFO_PPI_GET_INFO) (
(EFIAPI *GET_PCD_INFO_PPI_GET_INFO)(
IN UINTN TokenNumber,
OUT EFI_PCD_INFO *PcdInfo
);
);
/**
Retrieve additional information associated with a PCD token.
@@ -60,11 +60,11 @@ EFI_STATUS
**/
typedef
EFI_STATUS
(EFIAPI *GET_PCD_INFO_PPI_GET_INFO_EX) (
(EFIAPI *GET_PCD_INFO_PPI_GET_INFO_EX)(
IN CONST EFI_GUID *Guid,
IN UINTN TokenNumber,
OUT EFI_PCD_INFO *PcdInfo
);
);
/**
Retrieve the currently set SKU Id.
@@ -75,9 +75,9 @@ EFI_STATUS
**/
typedef
UINTN
(EFIAPI *GET_PCD_INFO_PPI_GET_SKU) (
(EFIAPI *GET_PCD_INFO_PPI_GET_SKU)(
VOID
);
);
///
/// This is the PCD service to use when querying for some additional data that can be contained in the
@@ -87,13 +87,12 @@ struct _GET_PCD_INFO_PPI {
///
/// Retrieve additional information associated with a PCD.
///
GET_PCD_INFO_PPI_GET_INFO GetInfo;
GET_PCD_INFO_PPI_GET_INFO_EX GetInfoEx;
GET_PCD_INFO_PPI_GET_INFO GetInfo;
GET_PCD_INFO_PPI_GET_INFO_EX GetInfoEx;
///
/// Retrieve the currently set SKU Id.
///
GET_PCD_INFO_PPI_GET_SKU GetSku;
GET_PCD_INFO_PPI_GET_SKU GetSku;
};
#endif