Skip to content
Snippets Groups Projects
Commit af1408e0 authored by Heinrich Schuchardt's avatar Heinrich Schuchardt Committed by Alexander Graf
Browse files

efi_loader: debug output efi_install_protocol_interface


efi_install_protocol_interface should provide the created or
provided handle in the debug output.

Signed-off-by: default avatarHeinrich Schuchardt <xypron.glpk@gmx.de>
Signed-off-by: default avatarAlexander Graf <agraf@suse.de>
parent 62471e46
Branches
Tags
No related merge requests found
......@@ -732,6 +732,11 @@ static efi_status_t EFIAPI efi_install_protocol_interface(
r = efi_create_handle(handle);
if (r != EFI_SUCCESS)
goto out;
debug("%sEFI: new handle %p\n", indent_string(nesting_level),
*handle);
} else {
debug("%sEFI: handle %p\n", indent_string(nesting_level),
*handle);
}
/* Find object. */
list_for_each(lhandle, &efi_obj_list) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment