summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAngel Pons <th3fanbus@gmail.com>2020-09-03 16:04:27 +0200
committerAngel Pons <th3fanbus@gmail.com>2020-09-07 15:38:55 +0000
commiteb9edb143e5e0601e1f5456463e69959c77ea6a8 (patch)
tree1c371161c767631ab2ef8ae58de387e1054c102b
parent4ca3873457dc6be2fb7b77e017e5d1f41143a496 (diff)
downloadcoreboot-eb9edb143e5e0601e1f5456463e69959c77ea6a8.tar.xz
drivers/mrc_cache: Reduce severity of `region not found` log message
On autogenerated FMAPs, there's no `UNIFIED_MRC_CACHE` region. The current code will print a spurious error message about it, though. Reduce the log level to BIOS_INFO to avoid confusion. Change-Id: I0961bb2a7d2d81dc5c0d28f6e6c29b320421fc3e Signed-off-by: Angel Pons <th3fanbus@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/45076 Reviewed-by: Furquan Shaikh <furquan@google.com> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Tim Wawrzynczak <twawrzynczak@chromium.org> Reviewed-by: Christian Walter <christian.walter@9elements.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
-rw-r--r--src/drivers/mrc_cache/mrc_cache.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/drivers/mrc_cache/mrc_cache.c b/src/drivers/mrc_cache/mrc_cache.c
index 0e42120c1b..00652acde6 100644
--- a/src/drivers/mrc_cache/mrc_cache.c
+++ b/src/drivers/mrc_cache/mrc_cache.c
@@ -480,7 +480,7 @@ static int protect_mrc_cache(const char *name)
return 0;
if (lookup_region_by_name(name, &region) < 0) {
- printk(BIOS_ERR, "MRC: Could not find region '%s'\n", name);
+ printk(BIOS_INFO, "MRC: Could not find region '%s'\n", name);
return -1;
}