summaryrefslogtreecommitdiffstats
path: root/ArmPlatformPkg/PrePi/MainUniCore.c
diff options
context:
space:
mode:
authorMichael Kubacki <michael.kubacki@microsoft.com>2021-12-05 14:53:52 -0800
committermergify[bot] <37929162+mergify[bot]@users.noreply.github.com>2021-12-07 17:24:28 +0000
commit40b0b23ed34f48c26d711d3e4613a4bb35eeadff (patch)
treeaba2ec9c8c50e4deb9486a16297ba496c4a302d2 /ArmPlatformPkg/PrePi/MainUniCore.c
parent429309e0c6b74792d679681a8edd0d5ae0ff850c (diff)
downloadedk2-40b0b23ed34f48c26d711d3e4613a4bb35eeadff.tar.gz
edk2-40b0b23ed34f48c26d711d3e4613a4bb35eeadff.tar.bz2
edk2-40b0b23ed34f48c26d711d3e4613a4bb35eeadff.zip
ArmPlatformPkg: Apply uncrustify changes
REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3737 Apply uncrustify changes to .c/.h files in the ArmPlatformPkg 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: Andrew Fish <afish@apple.com>
Diffstat (limited to 'ArmPlatformPkg/PrePi/MainUniCore.c')
-rw-r--r--ArmPlatformPkg/PrePi/MainUniCore.c13
1 files changed, 6 insertions, 7 deletions
diff --git a/ArmPlatformPkg/PrePi/MainUniCore.c b/ArmPlatformPkg/PrePi/MainUniCore.c
index aebbd8ccb9..6162d1241f 100644
--- a/ArmPlatformPkg/PrePi/MainUniCore.c
+++ b/ArmPlatformPkg/PrePi/MainUniCore.c
@@ -10,23 +10,22 @@
VOID
PrimaryMain (
- IN UINTN UefiMemoryBase,
- IN UINTN StacksBase,
- IN UINT64 StartTimeStamp
+ IN UINTN UefiMemoryBase,
+ IN UINTN StacksBase,
+ IN UINT64 StartTimeStamp
)
{
PrePiMain (UefiMemoryBase, StacksBase, StartTimeStamp);
// We must never return
- ASSERT(FALSE);
+ ASSERT (FALSE);
}
VOID
SecondaryMain (
- IN UINTN MpId
+ IN UINTN MpId
)
{
// We must never get into this function on UniCore system
- ASSERT(FALSE);
+ ASSERT (FALSE);
}
-