Michael Niewöhner has submitted this change. ( https://review.coreboot.org/c/coreboot/+/49559 )
Change subject: soc/intel/braswell/romstage/romstage.c: Use __func__ ......................................................................
soc/intel/braswell/romstage/romstage.c: Use __func__
Change-Id: I07d36fb9b499e64eaba8829073c040792a2fee6e Signed-off-by: Elyes HAOUAS ehaouas@noos.fr Reviewed-on: https://review.coreboot.org/c/coreboot/+/49559 Tested-by: build bot (Jenkins) no-reply@coreboot.org Reviewed-by: Michael Niewöhner foss@mniewoehner.de --- M src/soc/intel/braswell/romstage/romstage.c 1 file changed, 2 insertions(+), 3 deletions(-)
Approvals: build bot (Jenkins): Verified Michael Niewöhner: Looks good to me, approved
diff --git a/src/soc/intel/braswell/romstage/romstage.c b/src/soc/intel/braswell/romstage/romstage.c index 5a1aa0a..daa1b2d 100644 --- a/src/soc/intel/braswell/romstage/romstage.c +++ b/src/soc/intel/braswell/romstage/romstage.c @@ -105,9 +105,8 @@ dev = pcidev_on_root(LPC_DEV, LPC_FUNC);
if (!dev) { - printk(BIOS_ERR, - "Error! Device (PCI:0:%02x.%01x) not found, soc_memory_init_params!\n", - LPC_DEV, LPC_FUNC); + printk(BIOS_ERR, "Error! Device (PCI:0:%02x.%01x) not found, %s!\n", + LPC_DEV, LPC_FUNC, __func__); return; }