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 <ivy.jian@quanta.corp-partner.google.com>
Change-Id: Ia08fd45dd484c79d81527ea46cfaaa5a01a410c2
Reviewed-on: https://review.coreboot.org/c/coreboot/+/67536
Reviewed-by: Subrata Banik <subratabanik@google.com>
Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Kapil Porwal <kapilporwal@google.com>
Reviewed-by: Tarun Tuli <taruntuli@google.com>
Reviewed-by: Elyes Haouas <ehaouas@noos.fr>
This commit is contained in:
Ivy Jian 2022-09-12 15:23:22 +08:00 committed by Subrata Banik
parent 4257e8c132
commit 64c77dc299
1 changed files with 1 additions and 1 deletions

View File

@ -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++) { for (uint8_t i = 0; i < MAX_TYPE_C_PORTS; i++) {
if (i == typec_port) { 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); ec_port);
return ec_port; return ec_port;
} }