summaryrefslogtreecommitdiff
path: root/ArmPkg/Library/ArmExceptionLib
diff options
context:
space:
mode:
authorMichael D Kinney <michael.d.kinney@intel.com>2021-11-16 19:21:13 -0800
committermergify[bot] <37929162+mergify[bot]@users.noreply.github.com>2021-12-07 17:24:28 +0000
commita4a582e18068f5e866bbd9e5e517f1f0ca73e08b (patch)
treeb2e88535cda4eb7559baf535970602c21ddf0990 /ArmPkg/Library/ArmExceptionLib
parentdfafa8e45382939fb5dc78e9d37b97b500a43613 (diff)
downloadedk2-a4a582e18068f5e866bbd9e5e517f1f0ca73e08b.zip
edk2-a4a582e18068f5e866bbd9e5e517f1f0ca73e08b.tar.gz
edk2-a4a582e18068f5e866bbd9e5e517f1f0ca73e08b.tar.bz2
ArmPkg: Change use of EFI_D_* to DEBUG_*
REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3739 Update all use of EFI_D_* defines in DEBUG() macros to DEBUG_* defines. Cc: Andrew Fish <afish@apple.com> Cc: Leif Lindholm <leif@nuviainc.com> Cc: Michael Kubacki <michael.kubacki@microsoft.com> Signed-off-by: Michael D Kinney <michael.d.kinney@intel.com> Reviewed-by: Sami Mujawar <sami.mujawar@arm.com> Reviewed-by: Ard Biesheuvel <ardb@kernel.org>
Diffstat (limited to 'ArmPkg/Library/ArmExceptionLib')
-rw-r--r--ArmPkg/Library/ArmExceptionLib/ArmExceptionLib.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/ArmPkg/Library/ArmExceptionLib/ArmExceptionLib.c b/ArmPkg/Library/ArmExceptionLib/ArmExceptionLib.c
index 6edda81..245e848 100644
--- a/ArmPkg/Library/ArmExceptionLib/ArmExceptionLib.c
+++ b/ArmPkg/Library/ArmExceptionLib/ArmExceptionLib.c
@@ -309,7 +309,7 @@ CommonCExceptionHandler(
}
}
else {
- DEBUG((EFI_D_ERROR, "Unknown exception type %d\n", ExceptionType));
+ DEBUG((DEBUG_ERROR, "Unknown exception type %d\n", ExceptionType));
ASSERT(FALSE);
}
@@ -347,4 +347,3 @@ InitializeCpuExceptionHandlersEx (
{
return InitializeCpuExceptionHandlers (VectorInfo);
}
-