diff options
author | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2020-01-10 12:33:16 +0100 |
---|---|---|
committer | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2020-01-15 00:51:51 +0100 |
commit | 30ed1d4bbbe0501bb86d0a62a08b98d3b084a6c7 (patch) | |
tree | 2797689a4cc3ac282f2620d18e7da5622636df61 | |
parent | d7431042465cae9314d299022427ed15386a2fed (diff) | |
download | u-boot-30ed1d4bbbe0501bb86d0a62a08b98d3b084a6c7.tar.gz |
efi_driver: debug output efi_uc_start, efi_uc_stop
Use the correct printf codes for the debug output in efi_uc_start() and
efi_uc_stop().
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
-rw-r--r-- | lib/efi_driver/efi_uclass.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/efi_driver/efi_uclass.c b/lib/efi_driver/efi_uclass.c index 40269b00dc..25b27ece6d 100644 --- a/lib/efi_driver/efi_uclass.c +++ b/lib/efi_driver/efi_uclass.c @@ -112,7 +112,7 @@ static efi_status_t EFIAPI efi_uc_start( struct efi_driver_binding_extended_protocol *bp = (struct efi_driver_binding_extended_protocol *)this; - EFI_ENTRY("%p, %pUl, %ls", this, controller_handle, + EFI_ENTRY("%p, %p, %ls", this, controller_handle, efi_dp_str(remaining_device_path)); /* Attach driver to controller */ @@ -200,7 +200,7 @@ static efi_status_t EFIAPI efi_uc_stop( struct efi_driver_binding_extended_protocol *bp = (struct efi_driver_binding_extended_protocol *)this; - EFI_ENTRY("%p, %pUl, %zu, %p", this, controller_handle, + EFI_ENTRY("%p, %p, %zu, %p", this, controller_handle, number_of_children, child_handle_buffer); /* Destroy provided child controllers */ |