vbe: Use a warning for a failed requests

Optional requests should present a warning rather than an error. Update
the log call.

Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
Simon Glass 2022-10-20 18:23:06 -06:00 committed by Tom Rini
parent 98bedf42ea
commit c3a148f38f

View File

@ -195,8 +195,8 @@ static int bootmeth_vbe_ft_fixup(void *ctx, struct event *event)
ret = vbe_process_request(dest, &result);
if (ret) {
result.errnum = ret;
log_err("Failed to process VBE request %s (err=%d)\n",
ofnode_get_name(dest), ret);
log_warning("Failed to process VBE request %s (err=%d)\n",
ofnode_get_name(dest), ret);
if (*result.err_str) {
char *msg = strdup(result.err_str);