From 017ad9a41dc5c00cdd930c381d2758dc4ec2665f Mon Sep 17 00:00:00 2001 From: Julian Schroeder Date: Thu, 24 Feb 2022 15:13:19 -0600 Subject: [PATCH] soc/amd/common/fsp/fsp_validate.c: print warning instead of error If an AMD FSP binary has no valid image revision information, print a warning instead of an error. Change-Id: Ie9c5a387b81205fe93382778090260e41e261776 Signed-off-by: Julian Schroeder Reviewed-on: https://review.coreboot.org/c/coreboot/+/62349 Reviewed-by: Felix Held Reviewed-by: Jason Glenesk Reviewed-by: Raul Rangel Tested-by: build bot (Jenkins) --- src/soc/amd/common/fsp/fsp_validate.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/soc/amd/common/fsp/fsp_validate.c b/src/soc/amd/common/fsp/fsp_validate.c index d9ff5026b3..0ce59b3b2a 100644 --- a/src/soc/amd/common/fsp/fsp_validate.c +++ b/src/soc/amd/common/fsp/fsp_validate.c @@ -27,7 +27,7 @@ void soc_validate_fspm_header(const struct fsp_header *hdr) /* a coding bug on the AMD FSP side makes this value 1 in older versions of the FSP.*/ if (hdr->image_revision == 1) { - printk(BIOS_ERR, "No AMD FSP image revision information available\n"); + printk(BIOS_WARNING, "No AMD FSP image revision information available\n"); return; }