ec/google/chromeec: Change loglevel prefix

In most boards, it doesn't write OEM_NAME in CBI to override the
manufacturer name in the SMBIOS table. It' better use the "BIOS_INFO" than "BIOS_ERR"

BUG=b:222038287
BRANCH=firmware-brya-14505.B
TEST=emerge-brya coreboot

Change-Id: I52eb1e6926eaac30b1dbee13ab750ef15b466d89
Signed-off-by: Wisley Chen <wisley.chen@quanta.corp-partner.google.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/62823
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Tim Wawrzynczak <twawrzynczak@chromium.org>
This commit is contained in:
Wisley Chen 2022-03-15 16:42:26 +06:00 committed by Felix Held
parent 29571e80b3
commit de7cac82d6
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ const char *smbios_mainboard_manufacturer(void)
if (google_chromeec_cbi_get_oem_name(&oem_name[0], if (google_chromeec_cbi_get_oem_name(&oem_name[0],
ARRAY_SIZE(oem_name)) < 0) { ARRAY_SIZE(oem_name)) < 0) {
printk(BIOS_ERR, "Couldn't obtain OEM name from CBI\n"); printk(BIOS_INFO, "Couldn't obtain OEM name from CBI\n");
manuf = CONFIG_MAINBOARD_SMBIOS_MANUFACTURER; manuf = CONFIG_MAINBOARD_SMBIOS_MANUFACTURER;
} else { } else {
manuf = &oem_name[0]; manuf = &oem_name[0];