diff mbox series

[U-Boot,1/4] efi_selftest: correct efi_selftest_manageprotocols

Message ID 20180511100923.29659-2-xypron.glpk@gmx.de
State Accepted
Commit 0d6ea050cce5c7da6a876e197a75fceff2b9c12d
Delegated to: Alexander Graf
Headers show
Series implement ReinstallProtocolInterface | expand

Commit Message

Heinrich Schuchardt May 11, 2018, 10:09 a.m. UTC
Pass the correct interface when uninstalling a protocol.

Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
---
 lib/efi_selftest/efi_selftest_manageprotocols.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/lib/efi_selftest/efi_selftest_manageprotocols.c b/lib/efi_selftest/efi_selftest_manageprotocols.c
index 3e4755c25e9..44b8da3ba5d 100644
--- a/lib/efi_selftest/efi_selftest_manageprotocols.c
+++ b/lib/efi_selftest/efi_selftest_manageprotocols.c
@@ -335,7 +335,7 @@  static int execute(void)
 		return EFI_ST_FAILURE;
 	}
 	ret = boottime->uninstall_protocol_interface(handle1, &guid3,
-						     &interface1);
+						     &interface3);
 	if (ret != EFI_SUCCESS) {
 		efi_st_error("UninstallProtocolInterface failed\n");
 		return EFI_ST_FAILURE;