diff options
author | Leif Lindholm <quic_llindhol@quicinc.com> | 2024-07-25 13:13:04 +0100 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2024-07-31 08:59:21 +0000 |
commit | 03f49e44096fc25c33f96a11b3da93abc93dad34 (patch) | |
tree | 9c123750313f51c78ad5ac06d987d6263350454a | |
parent | e2528a52093ba06886d2e1838255bf64b8875aac (diff) | |
download | edk2-03f49e44096fc25c33f96a11b3da93abc93dad34.tar.gz |
UefiCpuPkg: remove last instances of EFI_D_
Change debug print levels to modern DEBUG_ format.
Signed-off-by: Leif Lindholm <quic_llindhol@quicinc.com>
-rw-r--r-- | UefiCpuPkg/CpuDxe/LoongArch64/Exception.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/UefiCpuPkg/CpuDxe/LoongArch64/Exception.c b/UefiCpuPkg/CpuDxe/LoongArch64/Exception.c index 754549cd0e..0662b6fec3 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);
}
|