summaryrefslogtreecommitdiffstats
path: root/util/autoport
diff options
context:
space:
mode:
authorPaul Menzel <pmenzel@molgen.mpg.de>2020-07-19 09:42:53 +0200
committerPatrick Georgi <pgeorgi@google.com>2020-07-26 21:40:16 +0000
commit56642930ab241c137c289e060d1ecc00dc6e5a4b (patch)
tree75fd38fc974ea01b20e458481927fcd25e72e0cf /util/autoport
parent4907e62893fb70e26f2d92b8de572b4767771812 (diff)
downloadcoreboot-56642930ab241c137c289e060d1ecc00dc6e5a4b.tar.gz
coreboot-56642930ab241c137c289e060d1ecc00dc6e5a4b.tar.bz2
coreboot-56642930ab241c137c289e060d1ecc00dc6e5a4b.zip
mb/lenovo: Prepend EC event number with 0x to denote hex notation
Currently, the message below is printed, suggesting it’s decimal notation: coreboot-4.12-1530-g7acbd5fc45 Sun Jul 19 07:47:58 UTC 2020 smm starting (log level: 7)... EC event 48 GPI (mask 1000) Prepend 0x, so it’s clear it’s hexadecimal notation. EC event 0x48 Use the command below change all places: git grep -l 'EC event %02x' | xargs sed -i 's/EC event %02x/EC event %#02x/' Change-Id: I8d1e6434a0e550c5a19576f9f7fea05e7a812e49 Signed-off-by: Paul Menzel <pmenzel@molgen.mpg.de> Reviewed-on: https://review.coreboot.org/c/coreboot/+/43585 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Diffstat (limited to 'util/autoport')
-rw-r--r--util/autoport/ec_lenovo.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/autoport/ec_lenovo.go b/util/autoport/ec_lenovo.go
index 3113a33fbc06..6851d6d1ed34 100644
--- a/util/autoport/ec_lenovo.go
+++ b/util/autoport/ec_lenovo.go
@@ -112,7 +112,7 @@ static void mainboard_smi_handle_ec_sci(void)
return;
event = ec_query();
- printk(BIOS_DEBUG, "EC event %02x\n", event);
+ printk(BIOS_DEBUG, "EC event %#02x\n", event);
}
void mainboard_smi_gpi(u32 gpi_sts)