[U-Boot] [RFC 1/8] efi_loader: boottime: don't add device path protocol to image handle
AKASHI Takahiro
takahiro.akashi at linaro.org
Tue Mar 5 05:53:30 UTC 2019
It is just wrong to add devcie path protocol to image handle.
Signed-off-by: AKASHI Takahiro <takahiro.akashi at linaro.org>
---
lib/efi_loader/efi_boottime.c | 11 +----------
1 file changed, 1 insertion(+), 10 deletions(-)
diff --git a/lib/efi_loader/efi_boottime.c b/lib/efi_loader/efi_boottime.c
index bd8b8a17ae71..7bd9c0a952d4 100644
--- a/lib/efi_loader/efi_boottime.c
+++ b/lib/efi_loader/efi_boottime.c
@@ -1540,17 +1540,8 @@ efi_status_t efi_setup_loaded_image(struct efi_device_path *device_path,
info->file_path = file_path;
info->system_table = &systab;
- if (device_path) {
+ if (device_path)
info->device_handle = efi_dp_find_obj(device_path, NULL);
- /*
- * When asking for the device path interface, return
- * bootefi_device_path
- */
- ret = efi_add_protocol(&obj->header,
- &efi_guid_device_path, device_path);
- if (ret != EFI_SUCCESS)
- goto failure;
- }
/*
* When asking for the loaded_image interface, just
--
2.20.1
More information about the U-Boot
mailing list