summaryrefslogtreecommitdiffstats
path: root/ArmPkg/Drivers
diff options
context:
space:
mode:
authorTaylor Beebe <tabeebe@microsoft.com>2023-06-29 09:17:55 -0700
committermergify[bot] <37929162+mergify[bot]@users.noreply.github.com>2023-07-03 14:29:32 +0000
commitcdbdd1246005669d5b4f66dff692c398920c3c2b (patch)
tree83e6212d3a5852312ab32adb27714bf94507faad /ArmPkg/Drivers
parentf2188fe5d1553ad1896e27b2514d2f8d0308da8a (diff)
downloadedk2-cdbdd1246005669d5b4f66dff692c398920c3c2b.tar.gz
edk2-cdbdd1246005669d5b4f66dff692c398920c3c2b.tar.bz2
edk2-cdbdd1246005669d5b4f66dff692c398920c3c2b.zip
ArmPkg: Apply Uncrustify to Non-Compliant Files
This patch applies Uncrustify to the following files: ArmPkg/Drivers/MmCommunicationPei/MmCommunicationPei.c ArmPkg/Include/IndustryStandard/ArmStdSmc.h Signed-off-by: Taylor Beebe <t@taylorbeebe.com> Reviewed-by: Ard Biesheuvel <ardb@kernel.org>
Diffstat (limited to 'ArmPkg/Drivers')
-rw-r--r--ArmPkg/Drivers/MmCommunicationPei/MmCommunicationPei.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/ArmPkg/Drivers/MmCommunicationPei/MmCommunicationPei.c b/ArmPkg/Drivers/MmCommunicationPei/MmCommunicationPei.c
index 5dbe99fc31..ccb182668d 100644
--- a/ArmPkg/Drivers/MmCommunicationPei/MmCommunicationPei.c
+++ b/ArmPkg/Drivers/MmCommunicationPei/MmCommunicationPei.c
@@ -159,8 +159,8 @@ MmCommunicationPeim (
}
CopyMem (CommBuffer, CommunicateHeader, BufferSize);
- *CommSize = BufferSize;
- Status = EFI_SUCCESS;
+ *CommSize = BufferSize;
+ Status = EFI_SUCCESS;
break;
case ARM_SMC_MM_RET_INVALID_PARAMS:
@@ -197,7 +197,7 @@ STATIC CONST EFI_PEI_MM_COMMUNICATION_PPI mPeiMmCommunication = {
STATIC CONST EFI_PEI_PPI_DESCRIPTOR mPeiMmCommunicationPpi = {
(EFI_PEI_PPI_DESCRIPTOR_PPI | EFI_PEI_PPI_DESCRIPTOR_TERMINATE_LIST),
&gEfiPeiMmCommunicationPpiGuid,
- (VOID*)&mPeiMmCommunication
+ (VOID *)&mPeiMmCommunication
};
/**