From 58ecefb181b0f1fb5e4a9fde974b7b9c0ad100e0 Mon Sep 17 00:00:00 2001 From: Paul Menzel Date: Thu, 9 Jan 2020 22:35:50 +0100 Subject: ec/lenovo/h8: Prepend EC log message with *H8* All other messages in `ec/lenovo/h8` are prepended with *H8*, so also prepend the EC version log message with *H8*. EC Firmware ID 79HT50WW-3.4, Version 7.01A No CMOS option 'usb_always_on'. H8: BDC detection not implemented. Assuming BDC installed H8: WWAN detection not implemented. Assuming WWAN installed No CMOS option 'fn_ctrl_swap'. Change-Id: Ib4f341946a336b57bd96c053a05364276caad1ac Signed-off-by: Paul Menzel Reviewed-on: https://review.coreboot.org/c/coreboot/+/38312 Tested-by: build bot (Jenkins) Reviewed-by: Patrick Rudolph Reviewed-by: Alexander Couzens --- src/ec/lenovo/h8/h8.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/ec/lenovo/h8') diff --git a/src/ec/lenovo/h8/h8.c b/src/ec/lenovo/h8/h8.c index 73657bcdb0..ed46a3f659 100644 --- a/src/ec/lenovo/h8/h8.c +++ b/src/ec/lenovo/h8/h8.c @@ -106,7 +106,7 @@ static void h8_log_ec_version(void) fwvh = ec_read(0xe9); fwvl = ec_read(0xe8); - printk(BIOS_INFO, "EC Firmware ID %s, Version %d.%d%d%c\n", ecfw, + printk(BIOS_INFO, "H8: EC Firmware ID %s, Version %d.%d%d%c\n", ecfw, fwvh >> 4, fwvh & 0x0f, fwvl >> 4, 0x41 + (fwvl & 0xf)); } -- cgit v1.2.3