diff options
author | Heinrich Schuchardt | 2019-05-10 19:55:53 +0200 |
---|---|---|
committer | Heinrich Schuchardt | 2019-05-12 20:54:22 +0200 |
commit | 61c63db7fe8af569229cb598b018c65f9ad9c95f (patch) | |
tree | ee5071c8c432aa1bf2fbcd7fad382dc04162b135 /lib/efi_loader | |
parent | ab557141c2ddb9cccffa992651a240b63d5fbf5b (diff) |
efi_loader: superfluous check in efi_remove_protocol()
efi_search_protocol() already checks that the GUID matches. Don't check
a second time.
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Diffstat (limited to 'lib/efi_loader')
-rw-r--r-- | lib/efi_loader/efi_boottime.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/efi_loader/efi_boottime.c b/lib/efi_loader/efi_boottime.c index 50c5374e5fb..b8589b9531c 100644 --- a/lib/efi_loader/efi_boottime.c +++ b/lib/efi_loader/efi_boottime.c @@ -513,8 +513,6 @@ efi_status_t efi_remove_protocol(const efi_handle_t handle, ret = efi_search_protocol(handle, protocol, &handler); if (ret != EFI_SUCCESS) return ret; - if (guidcmp(handler->guid, protocol)) - return EFI_INVALID_PARAMETER; if (handler->protocol_interface != protocol_interface) return EFI_INVALID_PARAMETER; list_del(&handler->link); |