Elyes Haouas has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/69623 )
Change subject: soc/amd/common/pi/def_callouts.c: Fix log messages ......................................................................
soc/amd/common/pi/def_callouts.c: Fix log messages
It is no longer necessary to explicitly add "Wrning" in front of BIOS_WARNING message.
Change-Id: If1645180dd98ff5a1661fd568554de5831ef237e Signed-off-by: Elyes Haouas ehaouas@noos.fr --- M src/soc/amd/common/pi/def_callouts.c 1 file changed, 16 insertions(+), 3 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/23/69623/1
diff --git a/src/soc/amd/common/pi/def_callouts.c b/src/soc/amd/common/pi/def_callouts.c index 223abe3..ee70951 100644 --- a/src/soc/amd/common/pi/def_callouts.c +++ b/src/soc/amd/common/pi/def_callouts.c @@ -147,7 +147,7 @@ AGESA_STATUS __weak platform_PcieSlotResetControl(uint32_t Func, uintptr_t Data, void *ConfigPtr) { - printk(BIOS_WARNING, "Warning - AGESA callout: %s not supported\n", + printk(BIOS_WARNING, "AGESA callout: %s not supported\n", __func__); return AGESA_UNSUPPORTED; } @@ -231,7 +231,7 @@ AGESA_STATUS agesa_WaitForAllApsFinished(uint32_t Func, uintptr_t Data, void *ConfigPtr) { - printk(BIOS_WARNING, "Warning - AGESA callout: %s not supported\n", + printk(BIOS_WARNING, "AGESA callout: %s not supported\n", __func__); AGESA_STATUS Status = AGESA_UNSUPPORTED;
@@ -240,7 +240,7 @@
AGESA_STATUS agesa_IdleAnAp(uint32_t Func, uintptr_t Data, void *ConfigPtr) { - printk(BIOS_WARNING, "Warning - AGESA callout: %s no supported\n", + printk(BIOS_WARNING, "AGESA callout: %s not supported\n", __func__); AGESA_STATUS Status = AGESA_UNSUPPORTED;