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
@@ -21,7 +21,6 @@ typedef struct _IPMI_PROTOCOL IPMI_PROTOCOL;
|
||||
0x5169af60, 0x8c5a, 0x4243, 0xb3, 0xe9, 0x56, 0xc5, 0x6d, 0x18, 0xee, 0x26 \
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
This service enables submitting commands via Ipmi.
|
||||
|
||||
@@ -43,24 +42,24 @@ typedef struct _IPMI_PROTOCOL IPMI_PROTOCOL;
|
||||
**/
|
||||
typedef
|
||||
EFI_STATUS
|
||||
(EFIAPI *IPMI_SUBMIT_COMMAND) (
|
||||
(EFIAPI *IPMI_SUBMIT_COMMAND)(
|
||||
IN IPMI_PROTOCOL *This,
|
||||
IN UINT8 NetFunction,
|
||||
IN UINT8 Command,
|
||||
IN UINT8 *RequestData,
|
||||
IN UINT32 RequestDataSize,
|
||||
OUT UINT8 *ResponseData,
|
||||
OUT UINT8 *ResponseData,
|
||||
IN OUT UINT32 *ResponseDataSize
|
||||
);
|
||||
|
||||
//
|
||||
// IPMI COMMAND PROTOCOL
|
||||
//
|
||||
struct _IPMI_PROTOCOL{
|
||||
IPMI_SUBMIT_COMMAND IpmiSubmitCommand;
|
||||
struct _IPMI_PROTOCOL {
|
||||
IPMI_SUBMIT_COMMAND IpmiSubmitCommand;
|
||||
};
|
||||
|
||||
extern EFI_GUID gIpmiProtocolGuid;
|
||||
extern EFI_GUID gSmmIpmiProtocolGuid;
|
||||
extern EFI_GUID gIpmiProtocolGuid;
|
||||
extern EFI_GUID gSmmIpmiProtocolGuid;
|
||||
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user