summaryrefslogtreecommitdiffstats
path: root/ArmPlatformPkg/PlatformPei/PlatformPeim.c
diff options
context:
space:
mode:
authorLaszlo Ersek <lersek@redhat.com>2015-03-02 16:19:32 +0000
committerlersek <lersek@Edk2>2015-03-02 16:19:32 +0000
commit3d5cf3726ec16fe87662a6a4472c1848bb5ac34a (patch)
tree8d5f4233c55c5c6a98e1407abcf3325c55209424 /ArmPlatformPkg/PlatformPei/PlatformPeim.c
parent1fce963d89f3e905fe4fcc3394b49dc3150c19cb (diff)
downloadedk2-3d5cf3726ec16fe87662a6a4472c1848bb5ac34a.tar.gz
edk2-3d5cf3726ec16fe87662a6a4472c1848bb5ac34a.tar.bz2
edk2-3d5cf3726ec16fe87662a6a4472c1848bb5ac34a.zip
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 <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
Diffstat (limited to 'ArmPlatformPkg/PlatformPei/PlatformPeim.c')
-rwxr-xr-xArmPlatformPkg/PlatformPei/PlatformPeim.c2
1 files changed, 1 insertions, 1 deletions
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 ();