aboutsummaryrefslogtreecommitdiff
path: root/src/drivers
diff options
context:
space:
mode:
authorMatt DeVillier <matt.devillier@gmail.com>2023-01-26 15:14:42 -0600
committerEric Lai <eric_lai@quanta.corp-partner.google.com>2023-02-10 08:28:49 +0000
commitbcc9879151c0ff61dfa3f2206b538d5c8be619ba (patch)
treef7607485ae4da2ac0cc74755a4fab1ef47aba63f /src/drivers
parent8a1de830162983a717665858bc8a51d1057ce85d (diff)
drivers/vpd: Demote FMAP not found printk from error to warn
Not all firmware which uses VPD uses both RO and RW regions, so either one not existing is not necessarily an error. Change-Id: I50f43a25ee24a642c39e2f0b52de2d4fef023f3b Signed-off-by: Matt DeVillier <matt.devillier@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/72476 Reviewed-by: Angel Pons <th3fanbus@gmail.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com>
Diffstat (limited to 'src/drivers')
-rw-r--r--src/drivers/vpd/vpd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/drivers/vpd/vpd.c b/src/drivers/vpd/vpd.c
index 24b878f3f2..4bd5f60c70 100644
--- a/src/drivers/vpd/vpd.c
+++ b/src/drivers/vpd/vpd.c
@@ -50,7 +50,7 @@ static void init_vpd_rdev(const char *fmap_name, struct region_device *rdev)
int32_t size;
if (fmap_locate_area_as_rdev(fmap_name, rdev)) {
- printk(BIOS_ERR, "%s: No %s FMAP section.\n", __func__,
+ printk(BIOS_WARNING, "%s: No %s FMAP section.\n", __func__,
fmap_name);
goto fail;
}