summaryrefslogtreecommitdiffstats
path: root/MdePkg/Include/Ppi/PcdInfo.h
diff options
context:
space:
mode:
Diffstat (limited to 'MdePkg/Include/Ppi/PcdInfo.h')
-rw-r--r--MdePkg/Include/Ppi/PcdInfo.h23
1 files changed, 11 insertions, 12 deletions
diff --git a/MdePkg/Include/Ppi/PcdInfo.h b/MdePkg/Include/Ppi/PcdInfo.h
index aa3135c596..c9d3f746ee 100644
--- a/MdePkg/Include/Ppi/PcdInfo.h
+++ b/MdePkg/Include/Ppi/PcdInfo.h
@@ -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
-