diff options
author | Tom Rini <trini@konsulko.com> | 2024-02-12 15:22:05 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-02-12 15:22:05 -0500 |
commit | 73b5b47dd5b546d0b9106bcca54c72815380e6d3 (patch) | |
tree | 347bf71809965d00f7d709b175930e78f82ce710 /lib/efi_loader/efi_disk.c | |
parent | a5f877a0bd64af97dbc812c9a0a8d7d6a353d943 (diff) | |
parent | 2eb39c9adafb4210c6bcf0aed75a34493c098c8e (diff) |
Merge tag 'doc-2024-04-rc2' of https://source.denx.de/u-boot/custodians/u-boot-efi
Pull request doc-2024-04-rc2
Documentation:
* Fix and extend utf8_to_utf32_stream() documentation
* Fix rendering of OpenSBI logo in VisionFive 2 description
* Document imxrt1170-evk board
* codingstyle.rst: Clarify include section
UEFI:
* simplify error message in efi_disk_create_raw()
Diffstat (limited to 'lib/efi_loader/efi_disk.c')
-rw-r--r-- | lib/efi_loader/efi_disk.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/efi_loader/efi_disk.c b/lib/efi_loader/efi_disk.c index b1739d9920..93a9a5ac02 100644 --- a/lib/efi_loader/efi_disk.c +++ b/lib/efi_loader/efi_disk.c @@ -574,7 +574,8 @@ static int efi_disk_create_raw(struct udevice *dev, efi_handle_t agent_handle) log_notice("Disk %s not ready\n", dev->name); ret = -EBUSY; } else { - log_err("Adding disk for %s failed (err=%ld/%#lx)\n", dev->name, ret, ret); + log_err("Adding block device %s failed, r = %lu\n", + dev->name, ret & ~EFI_ERROR_MASK); ret = -ENOENT; } |