diff options
author | Michael D Kinney <michael.d.kinney@intel.com> | 2021-11-16 19:21:13 -0800 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2021-12-07 17:24:28 +0000 |
commit | a4a582e18068f5e866bbd9e5e517f1f0ca73e08b (patch) | |
tree | b2e88535cda4eb7559baf535970602c21ddf0990 /ArmPkg/Library/ArmArchTimerLib | |
parent | dfafa8e45382939fb5dc78e9d37b97b500a43613 (diff) | |
download | edk2-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/ArmArchTimerLib')
-rw-r--r-- | ArmPkg/Library/ArmArchTimerLib/ArmArchTimerLib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ArmPkg/Library/ArmArchTimerLib/ArmArchTimerLib.c b/ArmPkg/Library/ArmArchTimerLib/ArmArchTimerLib.c index 875c835..eee030d 100644 --- a/ArmPkg/Library/ArmArchTimerLib/ArmArchTimerLib.c +++ b/ArmPkg/Library/ArmArchTimerLib/ArmArchTimerLib.c @@ -70,7 +70,7 @@ TimerConstructor ( ASSERT (ArmGenericTimerGetTimerFreq () != 0);
} else {
- DEBUG ((EFI_D_ERROR, "ARM Architectural Timer is not available in the CPU, hence this library cannot be used.\n"));
+ DEBUG ((DEBUG_ERROR, "ARM Architectural Timer is not available in the CPU, hence this library cannot be used.\n"));
ASSERT (0);
}
|