Michael Niewöhner has submitted this change. ( https://review.coreboot.org/c/coreboot/+/49556 )
Change subject: mainboard/lenovo/s230u/smihandler.c: Use __func__ ......................................................................
mainboard/lenovo/s230u/smihandler.c: Use __func__
Change-Id: If46ef5ffbd3de82d793a095b011e5740b776ff14 Signed-off-by: Elyes HAOUAS ehaouas@noos.fr Reviewed-on: https://review.coreboot.org/c/coreboot/+/49556 Tested-by: build bot (Jenkins) no-reply@coreboot.org Reviewed-by: Felix Singer felixsinger@posteo.net Reviewed-by: Michael Niewöhner foss@mniewoehner.de --- M src/mainboard/lenovo/s230u/smihandler.c 1 file changed, 1 insertion(+), 1 deletion(-)
Approvals: build bot (Jenkins): Verified Felix Singer: Looks good to me, approved Michael Niewöhner: Looks good to me, approved
diff --git a/src/mainboard/lenovo/s230u/smihandler.c b/src/mainboard/lenovo/s230u/smihandler.c index 62bba44..8f22063 100644 --- a/src/mainboard/lenovo/s230u/smihandler.c +++ b/src/mainboard/lenovo/s230u/smihandler.c @@ -74,7 +74,7 @@
int mainboard_smi_apmc(u8 data) { - printk(BIOS_INFO, "mainboard_smi_apmc(%02x)\n", data); + printk(BIOS_INFO, "%s(%02x)\n", __func__, data);
switch (data) { case APM_CNT_ACPI_ENABLE: