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:
Michael Kubacki
2021-12-05 14:54:05 -08:00
committed by mergify[bot]
parent 1436aea4d5
commit 2f88bd3a12
975 changed files with 55681 additions and 57790 deletions

View File

@@ -37,8 +37,8 @@ SPDX-License-Identifier: BSD-2-Clause-Patent
VOID
EFIAPI
SmBusQuickRead (
IN UINTN SmBusAddress,
OUT RETURN_STATUS *Status OPTIONAL
IN UINTN SmBusAddress,
OUT RETURN_STATUS *Status OPTIONAL
)
{
ASSERT (!SMBUS_LIB_PEC (SmBusAddress));
@@ -77,8 +77,8 @@ SmBusQuickRead (
VOID
EFIAPI
SmBusQuickWrite (
IN UINTN SmBusAddress,
OUT RETURN_STATUS *Status OPTIONAL
IN UINTN SmBusAddress,
OUT RETURN_STATUS *Status OPTIONAL
)
{
ASSERT (!SMBUS_LIB_PEC (SmBusAddress));
@@ -130,6 +130,7 @@ SmBusReceiveByte (
if (Status != NULL) {
*Status = RETURN_UNSUPPORTED;
}
return 0;
}
@@ -175,6 +176,7 @@ SmBusSendByte (
if (Status != NULL) {
*Status = RETURN_UNSUPPORTED;
}
return 0;
}
@@ -216,6 +218,7 @@ SmBusReadDataByte (
if (Status != NULL) {
*Status = RETURN_UNSUPPORTED;
}
return 0;
}
@@ -260,6 +263,7 @@ SmBusWriteDataByte (
if (Status != NULL) {
*Status = RETURN_UNSUPPORTED;
}
return 0;
}
@@ -301,6 +305,7 @@ SmBusReadDataWord (
if (Status != NULL) {
*Status = RETURN_UNSUPPORTED;
}
return 0;
}
@@ -345,6 +350,7 @@ SmBusWriteDataWord (
if (Status != NULL) {
*Status = RETURN_UNSUPPORTED;
}
return 0;
}
@@ -389,6 +395,7 @@ SmBusProcessCall (
if (Status != NULL) {
*Status = RETURN_UNSUPPORTED;
}
return 0;
}
@@ -437,6 +444,7 @@ SmBusReadBlock (
if (Status != NULL) {
*Status = RETURN_UNSUPPORTED;
}
return 0;
}
@@ -483,6 +491,7 @@ SmBusWriteBlock (
if (Status != NULL) {
*Status = RETURN_UNSUPPORTED;
}
return 0;
}
@@ -534,5 +543,6 @@ SmBusBlockProcessCall (
if (Status != NULL) {
*Status = RETURN_UNSUPPORTED;
}
return 0;
}