mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-24 21:54:01 +00:00
efi_driver: simplify error message
Stating the function module is sufficient. We don't need file and line number. Anyway the format code for the line number was incorrect (should be %d). Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de> Signed-off-by: Alexander Graf <agraf@suse.de>
This commit is contained in:
parent
44e7c62a82
commit
b4f471f18e
1 changed files with 1 additions and 2 deletions
|
@ -233,8 +233,7 @@ static efi_status_t EFIAPI efi_uc_stop(
|
||||||
}
|
}
|
||||||
ret = EFI_CALL(systab.boottime->free_pool(entry_buffer));
|
ret = EFI_CALL(systab.boottime->free_pool(entry_buffer));
|
||||||
if (ret != EFI_SUCCESS)
|
if (ret != EFI_SUCCESS)
|
||||||
printf("%s(%u) %s: ERROR: Cannot free pool\n",
|
printf("%s: ERROR: Cannot free pool\n", __func__);
|
||||||
__FILE__, __LINE__, __func__);
|
|
||||||
|
|
||||||
/* Detach driver from controller */
|
/* Detach driver from controller */
|
||||||
ret = EFI_CALL(systab.boottime->close_protocol(
|
ret = EFI_CALL(systab.boottime->close_protocol(
|
||||||
|
|
Loading…
Reference in a new issue