diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2022-02-04 19:50:26 +0100 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2022-02-08 16:19:20 +0000 |
commit | 4db4282e6b81e77d4d8118ec61b9a320e22f6134 (patch) | |
tree | 59756d3d51732af12facb4da1f8f2e3551d02f78 /src/mainboard/google/kahlee | |
parent | 1597748a80a19ad512265ef0b8a74c69af55c8c3 (diff) |
mb/google/kahlee/ec.c: Fix log message
Change-Id: Ic42d5c05938c060ccaa7b1a260cd584b6e1bb1f3
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/61634
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Raul Rangel <rrangel@chromium.org>
Diffstat (limited to 'src/mainboard/google/kahlee')
-rw-r--r-- | src/mainboard/google/kahlee/ec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainboard/google/kahlee/ec.c b/src/mainboard/google/kahlee/ec.c index 51e0e7f63a..66a933561c 100644 --- a/src/mainboard/google/kahlee/ec.c +++ b/src/mainboard/google/kahlee/ec.c @@ -39,7 +39,7 @@ static void early_ec_init(void) ec_ioport_base, ec_ioport_size); status = lpc_set_wideio_range(ec_ioport_base, ec_ioport_size); if (status == WIDEIO_RANGE_ERROR) - printk(BIOS_WARNING, "ERROR: Failed to assign a range\n"); + printk(BIOS_ERR, "Failed to assign a range\n"); else printk(BIOS_DEBUG, "Range assigned to wide IO %d\n", status); } |