summaryrefslogtreecommitdiffstats
path: root/MdePkg/Library/BaseSmbusLibNull
diff options
context:
space:
mode:
authorMichael Kubacki <michael.kubacki@microsoft.com>2021-12-05 14:54:05 -0800
committermergify[bot] <37929162+mergify[bot]@users.noreply.github.com>2021-12-07 17:24:28 +0000
commit2f88bd3a1296c522317f1c21377876de63de5be7 (patch)
treeba47875489cc5698061275a495983e9dea3be098 /MdePkg/Library/BaseSmbusLibNull
parent1436aea4d5707e672672a11bda72be2c63c936c3 (diff)
downloadedk2-2f88bd3a1296c522317f1c21377876de63de5be7.tar.gz
edk2-2f88bd3a1296c522317f1c21377876de63de5be7.tar.bz2
edk2-2f88bd3a1296c522317f1c21377876de63de5be7.zip
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>
Diffstat (limited to 'MdePkg/Library/BaseSmbusLibNull')
-rw-r--r--MdePkg/Library/BaseSmbusLibNull/BaseSmbusLibNull.c18
1 files changed, 14 insertions, 4 deletions
diff --git a/MdePkg/Library/BaseSmbusLibNull/BaseSmbusLibNull.c b/MdePkg/Library/BaseSmbusLibNull/BaseSmbusLibNull.c
index 42da5c0e6c..5393d96cd2 100644
--- a/MdePkg/Library/BaseSmbusLibNull/BaseSmbusLibNull.c
+++ b/MdePkg/Library/BaseSmbusLibNull/BaseSmbusLibNull.c
@@ -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;
}