mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-28 15:41:40 +00:00
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>
This commit is contained in:
parent
d743104246
commit
30ed1d4bbb
1 changed files with 2 additions and 2 deletions
|
@ -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 */
|
||||
|
|
Loading…
Reference in a new issue