From 03f49e44096fc25c33f96a11b3da93abc93dad34 Mon Sep 17 00:00:00 2001 From: Leif Lindholm Date: Thu, 25 Jul 2024 13:13:04 +0100 Subject: [PATCH] UefiCpuPkg: remove last instances of EFI_D_ Change debug print levels to modern DEBUG_ format. Signed-off-by: Leif Lindholm --- UefiCpuPkg/CpuDxe/LoongArch64/Exception.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/UefiCpuPkg/CpuDxe/LoongArch64/Exception.c b/UefiCpuPkg/CpuDxe/LoongArch64/Exception.c index 754549cd0ee0..0662b6fec38b 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); }