From 64c77dc299bf4e9dbcb4e553378325bcd02e5df8 Mon Sep 17 00:00:00 2001 From: Ivy Jian Date: Mon, 12 Sep 2022 15:23:22 +0800 Subject: soc/intel/meteorlake/retimer: Change loglevel prefix This message is not really an error message, so BIOS_ERR is inappropriate. Since the message is informational, switch to BIOS_INFO instead. BUG=b:244687646 TEST=emerge-rex coreboot before [ERROR] USB Type-C 0 mapped to EC port 0 after [INFO] USB Type-C 0 mapped to EC port 0 Signed-off-by: Ivy Jian Change-Id: Ia08fd45dd484c79d81527ea46cfaaa5a01a410c2 Reviewed-on: https://review.coreboot.org/c/coreboot/+/67536 Reviewed-by: Subrata Banik Reviewed-by: Eric Lai Tested-by: build bot (Jenkins) Reviewed-by: Kapil Porwal Reviewed-by: Tarun Tuli Reviewed-by: Elyes Haouas --- src/soc/intel/meteorlake/retimer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/soc') diff --git a/src/soc/intel/meteorlake/retimer.c b/src/soc/intel/meteorlake/retimer.c index 09bf112160..3fd9c2d43d 100644 --- a/src/soc/intel/meteorlake/retimer.c +++ b/src/soc/intel/meteorlake/retimer.c @@ -18,7 +18,7 @@ int retimer_get_index_for_typec(uint8_t typec_port) for (uint8_t i = 0; i < MAX_TYPE_C_PORTS; i++) { if (i == typec_port) { - printk(BIOS_ERR, "USB Type-C %d mapped to EC port %d\n", typec_port, + printk(BIOS_INFO, "USB Type-C %d mapped to EC port %d\n", typec_port, ec_port); return ec_port; } -- cgit v1.2.3