summaryrefslogtreecommitdiffstats
path: root/src/vendorcode/google
diff options
context:
space:
mode:
authorMaulik V Vaghela <maulik.v.vaghela@intel.com>2020-11-11 12:44:28 +0530
committerSubrata Banik <subrata.banik@intel.com>2020-11-20 08:36:26 +0000
commit0fd62f5b7963b2128d48aca190a93e9b94d70d13 (patch)
treeaee43348240807a27a6d521cb9febe22f24fc641 /src/vendorcode/google
parent957a36397ad7edc004f1f432a26ed43f86480bbf (diff)
downloadcoreboot-0fd62f5b7963b2128d48aca190a93e9b94d70d13.tar.gz
coreboot-0fd62f5b7963b2128d48aca190a93e9b94d70d13.tar.bz2
coreboot-0fd62f5b7963b2128d48aca190a93e9b94d70d13.zip
vc/google/chromeos/sar: Make "SAR not found" log a debug message
coreboot might not store wifi SAR values in VPD and may store it in CBFS. Logging the message with 'error' severity may interfere with automated test tool. Lowering severity to BIOS_DEBUG avoids 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> Reviewed-on: https://review.coreboot.org/c/coreboot/+/47442 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Karthik Ramasubramanian <kramasub@google.com>
Diffstat (limited to 'src/vendorcode/google')
-rw-r--r--src/vendorcode/google/chromeos/sar.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vendorcode/google/chromeos/sar.c b/src/vendorcode/google/chromeos/sar.c
index 2f73d390209c..9bca42352d77 100644
--- a/src/vendorcode/google/chromeos/sar.c
+++ b/src/vendorcode/google/chromeos/sar.c
@@ -71,7 +71,7 @@ int get_wifi_sar_limits(struct wifi_sar_limits *sar_limits)
/* 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))