Skip to content

Commit

Permalink
Whoops..
Browse files Browse the repository at this point in the history
  • Loading branch information
cfernald committed Sep 19, 2023
1 parent c2fef0a commit 9ad2fd4
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions IpmiFeaturePkg/Include/Library/IpmiBaseLib.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@
@retval EFI_SUCCESS Successfully send IPMI command.
@retval EFI_NOT_FOUND Ipmi interface is not installed yet.
**/
EFIAPI
EFI_STATUS
EFIAPI
IpmiSubmitCommand (
IN UINT8 NetFunction,
IN UINT8 Command,
Expand All @@ -49,8 +49,8 @@ IpmiSubmitCommand (
@retval EFI_SUCCESS Successfully retrieved BMC status
@retval EFI_NOT_AVAILABLE_YET Ipmi interface is not installed yet.
**/
EFIAPI
EFI_STATUS
EFIAPI
GetBmcStatus (
OUT BMC_STATUS *BmcStatus,
OUT SM_COM_ADDRESS *ComAddress
Expand Down
4 changes: 2 additions & 2 deletions IpmiFeaturePkg/Library/IpmiBaseLibDxe/IpmiBaseLibDxe.c
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ STATIC IPMI_TRANSPORT *mIpmiTransport = NULL;
@retval EFI_SUCCESS Successfully send IPMI command.
@retval EFI_NOT_FOUND Ipmi interface is not installed yet.
**/
EFIAPI
EFI_STATUS
EFIAPI
IpmiSubmitCommand (
IN UINT8 NetFunction,
IN UINT8 Command,
Expand Down Expand Up @@ -70,8 +70,8 @@ IpmiSubmitCommand (
@retval EFI_SUCCESS Successfully retrieved BMC status
@retval EFI_NOT_AVAILABLE_YET Ipmi interface is not installed yet.
**/
EFIAPI
EFI_STATUS
EFIAPI
GetBmcStatus (
OUT BMC_STATUS *BmcStatus,
OUT SM_COM_ADDRESS *ComAddress
Expand Down
4 changes: 2 additions & 2 deletions IpmiFeaturePkg/Library/IpmiBaseLibNull/IpmiBaseLibNull.c
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
@retval EFI_SUCCESS Successfully send IPMI command.
@retval EFI_NOT_FOUND Ipmi interface is not installed yet.
**/
EFIAPI
EFI_STATUS
EFIAPI
IpmiSubmitCommand (
IN UINT8 NetFunction,
IN UINT8 Command,
Expand All @@ -48,8 +48,8 @@ IpmiSubmitCommand (
@retval EFI_SUCCESS Successfully retrieved BMC status
@retval EFI_NOT_AVAILABLE_YET Ipmi interface is not installed yet.
**/
EFIAPI
EFI_STATUS
EFIAPI
GetBmcStatus (
OUT BMC_STATUS *BmcStatus,
OUT SM_COM_ADDRESS *ComAddress
Expand Down
4 changes: 2 additions & 2 deletions IpmiFeaturePkg/Library/IpmiBaseLibPei/IpmiBaseLibPei.c
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@
@retval EFI_SUCCESS Successfully send IPMI command.
@retval EFI_NOT_FOUND Ipmi interface is not installed yet.
**/
EFIAPI
EFI_STATUS
EFIAPI
IpmiSubmitCommand (
IN UINT8 NetFunction,
IN UINT8 Command,
Expand Down Expand Up @@ -68,8 +68,8 @@ IpmiSubmitCommand (
@retval EFI_SUCCESS Successfully retrieved BMC status
@retval EFI_NOT_AVAILABLE_YET Ipmi interface is not installed yet.
**/
EFIAPI
EFI_STATUS
EFIAPI
GetBmcStatus (
OUT BMC_STATUS *BmcStatus,
OUT SM_COM_ADDRESS *ComAddress
Expand Down
4 changes: 2 additions & 2 deletions IpmiFeaturePkg/Library/IpmiBaseLibSmm/IpmiBaseLibSmm.c
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ STATIC IPMI_TRANSPORT *mIpmiTransport = NULL;
@retval EFI_SUCCESS Successfully send IPMI command.
@retval EFI_NOT_AVAILABLE_YET Ipmi interface is not installed yet.
**/
EFIAPI
EFI_STATUS
EFIAPI
IpmiSubmitCommand (
IN UINT8 NetFunction,
IN UINT8 Command,
Expand Down Expand Up @@ -72,8 +72,8 @@ IpmiSubmitCommand (
@retval EFI_SUCCESS Successfully retrieved BMC status
@retval EFI_NOT_FOUND Ipmi interface is not installed yet.
**/
EFIAPI
EFI_STATUS
EFIAPI
GetBmcStatus (
OUT BMC_STATUS *BmcStatus,
OUT SM_COM_ADDRESS *ComAddress
Expand Down
4 changes: 2 additions & 2 deletions IpmiFeaturePkg/Library/MockIpmi/IpmiBaseLibMock.c
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ STATIC UINT8 ResponseBuffer[MOCK_BASE_IPMI_BUFFER_SIZE];
@retval EFI_SUCCESS Successfully send IPMI command.
@retval EFI_NOT_FOUND Ipmi interface is not installed yet.
**/
EFIAPI
EFI_STATUS
EFIAPI
IpmiSubmitCommand (
IN UINT8 NetFunction,
IN UINT8 Command,
Expand Down Expand Up @@ -82,8 +82,8 @@ IpmiSubmitCommand (
@retval EFI_SUCCESS Successfully retrieved BMC status
@retval EFI_NOT_AVAILABLE_YET Ipmi interface is not installed yet.
**/
EFIAPI
EFI_STATUS
EFIAPI
GetBmcStatus (
OUT BMC_STATUS *BmcStatus,
OUT SM_COM_ADDRESS *ComAddress
Expand Down

0 comments on commit 9ad2fd4

Please sign in to comment.