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>
This commit is contained in:
Elyes HAOUAS
2022-02-04 19:50:26 +01:00
committed by Felix Held
parent 1597748a80
commit 4db4282e6b

View File

@@ -39,7 +39,7 @@ static void early_ec_init(void)
ec_ioport_base, ec_ioport_size); ec_ioport_base, ec_ioport_size);
status = lpc_set_wideio_range(ec_ioport_base, ec_ioport_size); status = lpc_set_wideio_range(ec_ioport_base, ec_ioport_size);
if (status == WIDEIO_RANGE_ERROR) 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 else
printk(BIOS_DEBUG, "Range assigned to wide IO %d\n", status); printk(BIOS_DEBUG, "Range assigned to wide IO %d\n", status);
} }