summaryrefslogtreecommitdiff
path: root/UefiCpuPkg/CpuDxe
diff options
context:
space:
mode:
authorLeif Lindholm <quic_llindhol@quicinc.com>2024-07-25 13:13:04 +0100
committermergify[bot] <37929162+mergify[bot]@users.noreply.github.com>2024-07-31 08:59:21 +0000
commit03f49e44096fc25c33f96a11b3da93abc93dad34 (patch)
tree9c123750313f51c78ad5ac06d987d6263350454a /UefiCpuPkg/CpuDxe
parente2528a52093ba06886d2e1838255bf64b8875aac (diff)
downloadedk2-03f49e44096fc25c33f96a11b3da93abc93dad34.zip
edk2-03f49e44096fc25c33f96a11b3da93abc93dad34.tar.gz
edk2-03f49e44096fc25c33f96a11b3da93abc93dad34.tar.bz2
UefiCpuPkg: remove last instances of EFI_D_
Change debug print levels to modern DEBUG_ format. Signed-off-by: Leif Lindholm <quic_llindhol@quicinc.com>
Diffstat (limited to 'UefiCpuPkg/CpuDxe')
-rw-r--r--UefiCpuPkg/CpuDxe/LoongArch64/Exception.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/UefiCpuPkg/CpuDxe/LoongArch64/Exception.c b/UefiCpuPkg/CpuDxe/LoongArch64/Exception.c
index 754549c..0662b6f 100644
--- a/UefiCpuPkg/CpuDxe/LoongArch64/Exception.c
+++ b/UefiCpuPkg/CpuDxe/LoongArch64/Exception.c
@@ -137,7 +137,7 @@ InitializeExceptions (
//
Status = UpdateExceptionStartEntry ();
if (EFI_ERROR (Status)) {
- DebugPrint (EFI_D_ERROR, "[%a]: Exception start entry code out of bounds!\n", __func__);
+ DebugPrint (DEBUG_ERROR, "[%a]: Exception start entry code out of bounds!\n", __func__);
ASSERT_EFI_ERROR (Status);
}
@@ -150,7 +150,7 @@ InitializeExceptions (
//
// Enable interrupts
//
- DebugPrint (EFI_D_INFO, "InitializeExceptions,IrqEnabled = %x\n", IrqEnabled);
+ DebugPrint (DEBUG_INFO, "InitializeExceptions,IrqEnabled = %x\n", IrqEnabled);
if (!IrqEnabled) {
Status = Cpu->EnableInterrupt (Cpu);
}