Maulik V Vaghela has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/47442 )
Change subject: vendorcode/google/chromesos/sar: Reduce severity of debug message ......................................................................
vendorcode/google/chromesos/sar: Reduce severity of debug message
Coreboot might not store wifi SAR values in VPD and may store it in CBFS. Logging the debug message with 'error' severity may interfere with automated test tool.
Lowering severity to BIOS_DEBUG to avoid this issue
BUG=b:171931401 BRANCH=None TEST=Severity of message is reduced and we don't see it as an error
Change-Id: I5c122a57cfe92b27e0291933618ca13d8e1889ba Signed-off-by: Maulik V Vaghela maulik.v.vaghela@intel.com --- M src/vendorcode/google/chromeos/sar.c 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/42/47442/1
diff --git a/src/vendorcode/google/chromeos/sar.c b/src/vendorcode/google/chromeos/sar.c index 2f73d39..9bca423 100644 --- a/src/vendorcode/google/chromeos/sar.c +++ b/src/vendorcode/google/chromeos/sar.c @@ -71,7 +71,7 @@ /* Try to read the SAR limit entry from VPD */ if (!vpd_gets(wifi_sar_limit_key, wifi_sar_limit_str, buffer_size, VPD_RO_THEN_RW)) { - printk(BIOS_ERR, "Error: Could not locate '%s' in VPD.\n", + printk(BIOS_DEBUG, "Could not locate '%s' in VPD.\n", wifi_sar_limit_key);
if (!CONFIG(WIFI_SAR_CBFS))