]> git.proxmox.com Git - mirror_edk2.git/commitdiff
ArmPlatformPkg: PEIM startup is not an error
authorLaszlo Ersek <lersek@redhat.com>
Mon, 2 Mar 2015 16:19:32 +0000 (16:19 +0000)
committerlersek <lersek@Edk2>
Mon, 2 Mar 2015 16:19:32 +0000 (16:19 +0000)
"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 <lersek@redhat.com>
Reviewed-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
Reviewed-by: Leif Lindholm <leif.lindholm@arm.com>
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@16984 6f19259b-4bc3-4df7-8a09-765794883524

ArmPlatformPkg/MemoryInitPei/MemoryInitPeim.c
ArmPlatformPkg/PlatformPei/PlatformPeim.c

index bc1ab2fef1509346fc5275f630a244f8386ab8b0..93ab16ca4a74cd9513e62b9857af91b205597c71 100755 (executable)
@@ -101,7 +101,7 @@ InitializeMemory (
   UINTN                                 FdTop;\r
   UINTN                                 UefiMemoryBase;\r
 \r
   UINTN                                 FdTop;\r
   UINTN                                 UefiMemoryBase;\r
 \r
-  DEBUG ((EFI_D_ERROR, "Memory Init PEIM Loaded\n"));\r
+  DEBUG ((EFI_D_LOAD | EFI_D_INFO, "Memory Init PEIM Loaded\n"));\r
 \r
   //\r
   // Initialize the System Memory (DRAM)\r
 \r
   //\r
   // Initialize the System Memory (DRAM)\r
index ca33ae5313c87515f552db59f449a0d6d601c22f..ca47753ebdd6004eb615e95ceddf6d3c72126f6f 100755 (executable)
@@ -108,7 +108,7 @@ InitializePlatformPeim (
   ARM_GLOBAL_VARIABLE_PPI       *ArmGlobalVariablePpi;\r
   EFI_PHYSICAL_ADDRESS          GlobalVariableBase;\r
 \r
   ARM_GLOBAL_VARIABLE_PPI       *ArmGlobalVariablePpi;\r
   EFI_PHYSICAL_ADDRESS          GlobalVariableBase;\r
 \r
-  DEBUG ((EFI_D_ERROR, "Platform PEIM Loaded\n"));\r
+  DEBUG ((EFI_D_LOAD | EFI_D_INFO, "Platform PEIM Loaded\n"));\r
 \r
   PlatformPeim ();\r
 \r
 \r
   PlatformPeim ();\r
 \r