mirror of https://github.com/acidanthera/audk.git
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
This commit is contained in:
parent
1fce963d89
commit
3d5cf3726e
|
@ -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)
|
||||
|
|
|
@ -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 ();
|
||||
|
||||
|
|
Loading…
Reference in New Issue