diff options
author | Tom Rini <trini@konsulko.com> | 2022-08-13 07:37:48 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-08-13 07:37:48 -0400 |
commit | 20d4c6052fe5826b3421e86b2f0e76a6c22581a7 (patch) | |
tree | b11d7fc88bcabb8aac89bda03e30c1af40eab613 /lib/efi_driver/efi_block_device.c | |
parent | 8f9eee8275cf475f6d9435e85aa2d04b61b3cd75 (diff) | |
parent | 046d7a0bb1b383fe14bfe950b91ce2e20f835bd4 (diff) |
Merge tag 'efi-2022-10-rc3' of https://source.denx.de/u-boot/custodians/u-boot-efi
Pull request for efi-2022-10-rc3
Documentation:
* Add HTML documentation for patman
* Improve binman documentation
* Man-page for gpio
UEFI:
* move udevice pointer into struct efi_object
* fix efi_convert_device_path_to_text()
Other:
* fs/erofs: silence messages from erofs_probe()
Diffstat (limited to 'lib/efi_driver/efi_block_device.c')
-rw-r--r-- | lib/efi_driver/efi_block_device.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/efi_driver/efi_block_device.c b/lib/efi_driver/efi_block_device.c index 5baa6f87a37..d57d281f850 100644 --- a/lib/efi_driver/efi_block_device.c +++ b/lib/efi_driver/efi_block_device.c @@ -158,8 +158,7 @@ static int efi_bl_bind(efi_handle_t handle, void *interface) * FIXME: necessary because we won't do almost nothing in * efi_disk_create() when called from device_probe(). */ - ret = dev_tag_set_ptr(bdev, DM_TAG_EFI, handle); - if (ret) + if (efi_link_dev(handle, bdev)) /* FIXME: cleanup for bdev */ return ret; |