diff options
author | Simon Glass | 2023-05-10 16:34:26 -0600 |
---|---|---|
committer | Tom Rini | 2023-05-13 09:52:32 -0400 |
commit | c8894348454aef103a29e5afbfe45c0959b9d45b (patch) | |
tree | ad0e08049b5acf510ab6f56fe9d30cd1188c47e2 /boot/bootmeth_efi.c | |
parent | d8d40bc392d1ce60660e479a73970666e6a8a7be (diff) |
bootstd: Tidy up reporting of errors
In a few cases the error handling is not quite right. Make sure we
return the actual error in distro_efi_read_bootflow_file() rather than
-EINVAL. Return -IO when a file cannot be read. Also show the error name
if available.
This does not change operation, but does make it easier to diagnose
problems.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'boot/bootmeth_efi.c')
-rw-r--r-- | boot/bootmeth_efi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/boot/bootmeth_efi.c b/boot/bootmeth_efi.c index 6f70f2229b9..af31fbfc85d 100644 --- a/boot/bootmeth_efi.c +++ b/boot/bootmeth_efi.c @@ -235,7 +235,7 @@ static int distro_efi_read_bootflow_file(struct udevice *dev, ret = efiload_read_file(desc, bflow); if (ret) - return log_msg_ret("read", -EINVAL); + return log_msg_ret("read", ret); fdt_addr = env_get_hex("fdt_addr_r", 0); |