diff options
author | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2019-06-01 19:29:39 +0200 |
---|---|---|
committer | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2019-06-01 22:40:23 +0200 |
commit | 755d42d4209eda07836b256730e8686c37b18939 (patch) | |
tree | 3c842eb7c881203d6aa5dc9b2dfe4b00b6434414 | |
parent | 5ec48e38eefa5fbc2cab0c34b2b48df67c0fa23e (diff) | |
download | u-boot-755d42d4209eda07836b256730e8686c37b18939.tar.gz u-boot-755d42d4209eda07836b256730e8686c37b18939.tar.xz u-boot-755d42d4209eda07836b256730e8686c37b18939.zip |
efi_loader: correct HandleProtocol()
The UEFI specification requires that when a protocol is opened via
HandleProtocol() the agent handle is the image handle of the EFI firmware
(see chapter on EFI_BOOT_SERVICES.OpenProtocol()).
Let efi_handle_protocol() pass efi_root as agent handle to
efi_open_protocol().
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
-rw-r--r-- | lib/efi_loader/efi_boottime.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/efi_loader/efi_boottime.c b/lib/efi_loader/efi_boottime.c index f5b5828f93..481f9b9d3e 100644 --- a/lib/efi_loader/efi_boottime.c +++ b/lib/efi_loader/efi_boottime.c @@ -3073,7 +3073,7 @@ static efi_status_t EFIAPI efi_handle_protocol(efi_handle_t handle, const efi_guid_t *protocol, void **protocol_interface) { - return efi_open_protocol(handle, protocol, protocol_interface, NULL, + return efi_open_protocol(handle, protocol, protocol_interface, efi_root, NULL, EFI_OPEN_PROTOCOL_BY_HANDLE_PROTOCOL); } |