Skip to content

Commit

Permalink
UefiCpuPkg: remove last instances of EFI_D_
Browse files Browse the repository at this point in the history
Change debug print levels to modern DEBUG_ format.

Signed-off-by: Leif Lindholm <[email protected]>
  • Loading branch information
leiflindholm authored and mergify[bot] committed Jul 31, 2024
1 parent e2528a5 commit 03f49e4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions UefiCpuPkg/CpuDxe/LoongArch64/Exception.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

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

0 comments on commit 03f49e4

Please sign in to comment.