From 3d5cf3726ec16fe87662a6a4472c1848bb5ac34a Mon Sep 17 00:00:00 2001 From: Laszlo Ersek Date: Mon, 2 Mar 2015 16:19:32 +0000 Subject: [PATCH] ArmPlatformPkg: PEIM startup is not an error "MemoryInitPeim.c" and "PlatformPeim.c" log startup messages on the EFI_D_ERROR level. This clutters a strictly EFI_D_ERROR level log needlessly; change the log bitmask of these messages to EFI_D_LOAD | EFI_D_INFO. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Laszlo Ersek Reviewed-by: Ard Biesheuvel Reviewed-by: Leif Lindholm git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@16984 6f19259b-4bc3-4df7-8a09-765794883524 --- ArmPlatformPkg/MemoryInitPei/MemoryInitPeim.c | 2 +- ArmPlatformPkg/PlatformPei/PlatformPeim.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ArmPlatformPkg/MemoryInitPei/MemoryInitPeim.c b/ArmPlatformPkg/MemoryInitPei/MemoryInitPeim.c index bc1ab2fef1..93ab16ca4a 100755 --- a/ArmPlatformPkg/MemoryInitPei/MemoryInitPeim.c +++ b/ArmPlatformPkg/MemoryInitPei/MemoryInitPeim.c @@ -101,7 +101,7 @@ InitializeMemory ( UINTN FdTop; UINTN UefiMemoryBase; - DEBUG ((EFI_D_ERROR, "Memory Init PEIM Loaded\n")); + DEBUG ((EFI_D_LOAD | EFI_D_INFO, "Memory Init PEIM Loaded\n")); // // Initialize the System Memory (DRAM) diff --git a/ArmPlatformPkg/PlatformPei/PlatformPeim.c b/ArmPlatformPkg/PlatformPei/PlatformPeim.c index ca33ae5313..ca47753ebd 100755 --- a/ArmPlatformPkg/PlatformPei/PlatformPeim.c +++ b/ArmPlatformPkg/PlatformPei/PlatformPeim.c @@ -108,7 +108,7 @@ InitializePlatformPeim ( ARM_GLOBAL_VARIABLE_PPI *ArmGlobalVariablePpi; EFI_PHYSICAL_ADDRESS GlobalVariableBase; - DEBUG ((EFI_D_ERROR, "Platform PEIM Loaded\n")); + DEBUG ((EFI_D_LOAD | EFI_D_INFO, "Platform PEIM Loaded\n")); PlatformPeim (); -- 2.39.2