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:
committed by
mergify[bot]
parent
7c7184e201
commit
1436aea4d5
@@ -15,14 +15,13 @@
|
||||
|
||||
**/
|
||||
|
||||
|
||||
#ifndef _SMM_CONTROL_PPI_H_
|
||||
#define _SMM_CONTROL_PPI_H_
|
||||
|
||||
#define PEI_SMM_CONTROL_PPI_GUID \
|
||||
{ 0x61c68702, 0x4d7e, 0x4f43, 0x8d, 0xef, 0xa7, 0x43, 0x5, 0xce, 0x74, 0xc5 }
|
||||
|
||||
typedef struct _PEI_SMM_CONTROL_PPI PEI_SMM_CONTROL_PPI;
|
||||
typedef struct _PEI_SMM_CONTROL_PPI PEI_SMM_CONTROL_PPI;
|
||||
|
||||
/**
|
||||
Invokes SMI activation from either the preboot or runtime environment.
|
||||
@@ -43,9 +42,9 @@ typedef struct _PEI_SMM_CONTROL_PPI PEI_SMM_CONTROL_PPI;
|
||||
**/
|
||||
typedef
|
||||
EFI_STATUS
|
||||
(EFIAPI *PEI_SMM_ACTIVATE) (
|
||||
(EFIAPI *PEI_SMM_ACTIVATE)(
|
||||
IN EFI_PEI_SERVICES **PeiServices,
|
||||
IN PEI_SMM_CONTROL_PPI * This,
|
||||
IN PEI_SMM_CONTROL_PPI *This,
|
||||
IN OUT INT8 *ArgumentBuffer OPTIONAL,
|
||||
IN OUT UINTN *ArgumentBufferSize OPTIONAL,
|
||||
IN BOOLEAN Periodic OPTIONAL,
|
||||
@@ -67,9 +66,9 @@ EFI_STATUS
|
||||
**/
|
||||
typedef
|
||||
EFI_STATUS
|
||||
(EFIAPI *PEI_SMM_DEACTIVATE) (
|
||||
(EFIAPI *PEI_SMM_DEACTIVATE)(
|
||||
IN EFI_PEI_SERVICES **PeiServices,
|
||||
IN PEI_SMM_CONTROL_PPI * This,
|
||||
IN PEI_SMM_CONTROL_PPI *This,
|
||||
IN BOOLEAN Periodic OPTIONAL
|
||||
);
|
||||
|
||||
@@ -80,10 +79,10 @@ EFI_STATUS
|
||||
/// Intel chipset
|
||||
///
|
||||
struct _PEI_SMM_CONTROL_PPI {
|
||||
PEI_SMM_ACTIVATE Trigger;
|
||||
PEI_SMM_DEACTIVATE Clear;
|
||||
PEI_SMM_ACTIVATE Trigger;
|
||||
PEI_SMM_DEACTIVATE Clear;
|
||||
};
|
||||
|
||||
extern EFI_GUID gPeiSmmControlPpiGuid;
|
||||
extern EFI_GUID gPeiSmmControlPpiGuid;
|
||||
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user