mirror of https://github.com/acidanthera/audk.git
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>
This commit is contained in:
parent
f2188fe5d1
commit
cdbdd12460
|
@ -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
|
||||
};
|
||||
|
||||
/**
|
||||
|
|
|
@ -248,9 +248,9 @@
|
|||
* SMC64 SiP Service Calls
|
||||
*/
|
||||
|
||||
#define SMC_FASTCALL 0x80000000
|
||||
#define SMC64_FUNCTION (SMC_FASTCALL | 0x40000000)
|
||||
#define SMC_SIP_FUNCTION (SMC64_FUNCTION | 0x02000000)
|
||||
#define SMC_SIP_FUNCTION_ID(n) (SMC_SIP_FUNCTION | (n))
|
||||
#define SMC_FASTCALL 0x80000000
|
||||
#define SMC64_FUNCTION (SMC_FASTCALL | 0x40000000)
|
||||
#define SMC_SIP_FUNCTION (SMC64_FUNCTION | 0x02000000)
|
||||
#define SMC_SIP_FUNCTION_ID(n) (SMC_SIP_FUNCTION | (n))
|
||||
|
||||
#endif // ARM_STD_SMC_H_
|
||||
|
|
Loading…
Reference in New Issue