soc/amd/common/pi/def_callouts.c: Fix log messages

It is no longer necessary to explicitly add "Warning" in front of
BIOS_WARNING message.

Change-Id: If1645180dd98ff5a1661fd568554de5831ef237e
Signed-off-by: Elyes Haouas <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/69623
Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
Elyes Haouas 2022-11-15 09:46:48 +01:00 committed by Felix Held
parent bedc9b75a7
commit a31ef8c242
1 changed files with 3 additions and 3 deletions

View File

@ -147,7 +147,7 @@ AGESA_STATUS agesa_GfxGetVbiosImage(uint32_t Func, uintptr_t FchData,
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_RunFcnOnAllAps(uint32_t Func, uintptr_t Data,
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_WaitForAllApsFinished(uint32_t Func, uintptr_t Data,
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;