diff options
author | Julian Schroeder <julianmarcusschroeder@gmail.com> | 2022-02-24 15:13:19 -0600 |
---|---|---|
committer | Raul Rangel <rrangel@chromium.org> | 2022-03-01 20:59:29 +0000 |
commit | 017ad9a41dc5c00cdd930c381d2758dc4ec2665f (patch) | |
tree | a062b961c97e3f2cbc87662c5e54a6f73c0c6e22 /src/soc/amd | |
parent | 554f9e6b205ea56c7479b276d473263f5b9f2a94 (diff) |
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 <julianmarcusschroeder@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/62349
Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
Reviewed-by: Jason Glenesk <jason.glenesk@gmail.com>
Reviewed-by: Raul Rangel <rrangel@chromium.org>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/soc/amd')
-rw-r--r-- | src/soc/amd/common/fsp/fsp_validate.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |