summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorWisley Chen <wisley.chen@quanta.corp-partner.google.com>2022-03-09 18:52:22 +0600
committerFelix Held <felix-coreboot@felixheld.de>2022-03-17 14:43:30 +0000
commit9006d8b74654d9ae4678b52122ef5ae34689f396 (patch)
tree5d2b6ed9f1adfdaf2314e6e99b140192e744f3cc /src
parentde7cac82d67aabfaef52dcc7cc47c7d1cdb1e2cb (diff)
soc/intel/alderlake/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:222038287 BRANCH=firmware-brya-14505.B TEST=emerge-brya coreboot Change-Id: I9dc852a0cd30f95506c205f161a05e8a8c44fcd5 Signed-off-by: Wisley Chen <wisley.chen@quanta.corp-partner.google.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/62821 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Tim Wawrzynczak <twawrzynczak@chromium.org>
Diffstat (limited to 'src')
-rw-r--r--src/soc/intel/alderlake/retimer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/soc/intel/alderlake/retimer.c b/src/soc/intel/alderlake/retimer.c
index 09bf112160..3fd9c2d43d 100644
--- a/src/soc/intel/alderlake/retimer.c
+++ b/src/soc/intel/alderlake/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;
}