UefiCpuPkg: remove last instances of EFI_D_

Change debug print levels to modern DEBUG_ format.

Signed-off-by: Leif Lindholm <quic_llindhol@quicinc.com>
This commit is contained in:
Leif Lindholm 2024-07-25 13:13:04 +01:00 committed by mergify[bot]
parent e2528a5209
commit 03f49e4409

View File

@ -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);
}