summaryrefslogtreecommitdiffstats
path: root/ArmPlatformPkg/Library/PrePiHobListPointerLib
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/Library/PrePiHobListPointerLib
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/Library/PrePiHobListPointerLib')
-rw-r--r--ArmPlatformPkg/Library/PrePiHobListPointerLib/PrePiHobListPointer.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/ArmPlatformPkg/Library/PrePiHobListPointerLib/PrePiHobListPointer.c b/ArmPlatformPkg/Library/PrePiHobListPointerLib/PrePiHobListPointer.c
index fe70be56d5..5b0b31b144 100644
--- a/ArmPlatformPkg/Library/PrePiHobListPointerLib/PrePiHobListPointer.c
+++ b/ArmPlatformPkg/Library/PrePiHobListPointerLib/PrePiHobListPointer.c
@@ -25,11 +25,9 @@ PrePeiGetHobList (
VOID
)
{
- return (VOID *)ArmReadTpidrurw();
+ return (VOID *)ArmReadTpidrurw ();
}
-
-
/**
Updates the pointer to the HOB list.
@@ -39,10 +37,10 @@ PrePeiGetHobList (
EFI_STATUS
EFIAPI
PrePeiSetHobList (
- IN VOID *HobList
+ IN VOID *HobList
)
{
- ArmWriteTpidrurw((UINTN)HobList);
+ ArmWriteTpidrurw ((UINTN)HobList);
return EFI_SUCCESS;
}