diff options
author | Pierre Gondois <Pierre.Gondois@arm.com> | 2020-12-22 12:21:04 +0000 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2021-04-15 19:53:39 +0000 |
commit | 74b41d56485bd77f5e38b664bf7245dd2b1dd32e (patch) | |
tree | 473d2e95e6843673040bf031c0dbd993077273ef /ArmPkg/Library/ArmExceptionLib/Arm | |
parent | 22693153d16a2a6372675416ad93c7f3baf25409 (diff) | |
download | edk2-74b41d56485bd77f5e38b664bf7245dd2b1dd32e.zip edk2-74b41d56485bd77f5e38b664bf7245dd2b1dd32e.tar.gz edk2-74b41d56485bd77f5e38b664bf7245dd2b1dd32e.tar.bz2 |
ArmPkg: Fix Ecc error 5003 in ArmExceptionLib
This patch fixes the following Ecc reported error:
Function name should be left justified,
followed by the beginning of the parameter list,
with the closing parenthesis on its own line,
indented two spaces
Signed-off-by: Pierre Gondois <Pierre.Gondois@arm.com>
Reviewed-by: Sami Mujawar <sami.mujawar@arm.com>
Diffstat (limited to 'ArmPkg/Library/ArmExceptionLib/Arm')
-rw-r--r-- | ArmPkg/Library/ArmExceptionLib/Arm/ArmException.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/ArmPkg/Library/ArmExceptionLib/Arm/ArmException.c b/ArmPkg/Library/ArmExceptionLib/Arm/ArmException.c index 36c9f3f..40857c7 100644 --- a/ArmPkg/Library/ArmExceptionLib/Arm/ArmException.c +++ b/ArmPkg/Library/ArmExceptionLib/Arm/ArmException.c @@ -2,7 +2,7 @@ * Exception handling support specific for ARM
*
* Copyright (c) 2008 - 2009, Apple Inc. All rights reserved.<BR>
-* Copyright (c) 2014, ARM Limited. All rights reserved.<BR>
+* Copyright (c) 2014 - 2021, Arm Limited. All rights reserved.<BR>
* Copyright (c) 2016 HP Development Company, L.P.<BR>
*
* SPDX-License-Identifier: BSD-2-Clause-Patent
@@ -26,7 +26,8 @@ PHYSICAL_ADDRESS gExceptionVectorAlignmentMask = ARM_VECTOR_TABLE_ALIGNME // NOTE: This code assumes vectors are ARM and not Thumb code
UINTN gDebuggerNoHandlerValue = 0xEAFFFFFE;
-RETURN_STATUS ArchVectorConfig(
+RETURN_STATUS
+ArchVectorConfig (
IN UINTN VectorBaseAddress
)
{
|