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
@@ -13,7 +13,7 @@
|
||||
#ifndef __PI_PCD_INFO_PPI_H__
|
||||
#define __PI_PCD_INFO_PPI_H__
|
||||
|
||||
extern EFI_GUID gEfiGetPcdInfoPpiGuid;
|
||||
extern EFI_GUID gEfiGetPcdInfoPpiGuid;
|
||||
|
||||
#define EFI_GET_PCD_INFO_PPI_GUID \
|
||||
{ 0xa60c6b59, 0xe459, 0x425d, { 0x9c, 0x69, 0xb, 0xcc, 0x9c, 0xb2, 0x7d, 0x81 } }
|
||||
@@ -21,7 +21,7 @@ extern EFI_GUID gEfiGetPcdInfoPpiGuid;
|
||||
///
|
||||
/// The forward declaration for EFI_GET_PCD_INFO_PPI.
|
||||
///
|
||||
typedef struct _EFI_GET_PCD_INFO_PPI EFI_GET_PCD_INFO_PPI;
|
||||
typedef struct _EFI_GET_PCD_INFO_PPI EFI_GET_PCD_INFO_PPI;
|
||||
|
||||
/**
|
||||
Retrieve additional information associated with a PCD token.
|
||||
@@ -38,11 +38,11 @@ typedef struct _EFI_GET_PCD_INFO_PPI EFI_GET_PCD_INFO_PPI;
|
||||
**/
|
||||
typedef
|
||||
EFI_STATUS
|
||||
(EFIAPI *EFI_GET_PCD_INFO_PPI_GET_INFO) (
|
||||
(EFIAPI *EFI_GET_PCD_INFO_PPI_GET_INFO)(
|
||||
IN CONST EFI_GUID *Guid,
|
||||
IN UINTN TokenNumber,
|
||||
OUT EFI_PCD_INFO *PcdInfo
|
||||
);
|
||||
);
|
||||
|
||||
/**
|
||||
Retrieve the currently set SKU Id.
|
||||
@@ -53,9 +53,9 @@ EFI_STATUS
|
||||
**/
|
||||
typedef
|
||||
UINTN
|
||||
(EFIAPI *EFI_GET_PCD_INFO_PPI_GET_SKU) (
|
||||
(EFIAPI *EFI_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
|
||||
@@ -65,12 +65,11 @@ struct _EFI_GET_PCD_INFO_PPI {
|
||||
///
|
||||
/// Retrieve additional information associated with a PCD.
|
||||
///
|
||||
EFI_GET_PCD_INFO_PPI_GET_INFO GetInfo;
|
||||
EFI_GET_PCD_INFO_PPI_GET_INFO GetInfo;
|
||||
///
|
||||
/// Retrieve the currently set SKU Id.
|
||||
///
|
||||
EFI_GET_PCD_INFO_PPI_GET_SKU GetSku;
|
||||
EFI_GET_PCD_INFO_PPI_GET_SKU GetSku;
|
||||
};
|
||||
|
||||
#endif
|
||||
|
||||
|
Reference in New Issue
Block a user