From: Heinrich Schuchardt Date: Thu, 26 Oct 2017 17:25:43 +0000 (+0200) Subject: efi_loader: debug output efi_install_protocol_interface X-Git-Tag: v2018.01-rc2~58^2~41 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=af1408e080e21b1bf04c24740ceb39f118c3293b;p=platform%2Fkernel%2Fu-boot.git 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: Heinrich Schuchardt Signed-off-by: Alexander Graf --- diff --git a/lib/efi_loader/efi_boottime.c b/lib/efi_loader/efi_boottime.c index f64db41..3977593 100644 --- a/lib/efi_loader/efi_boottime.c +++ b/lib/efi_loader/efi_boottime.c @@ -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) {