diff options
author | Tom Rini <trini@konsulko.com> | 2019-02-13 07:12:29 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-02-13 07:12:29 -0500 |
commit | 63f7e3fca391a50a499fed828fe16325fdee45f3 (patch) | |
tree | 6214d5fe9a24d21b9a729a1bda3fdd22e442d298 /lib/efi_driver/efi_uclass.c | |
parent | b1b1bab7f92b838a252ab977f56d9c3584c14fb7 (diff) | |
parent | 823c233b7ab95169ea4428b2821b72b8887b47b0 (diff) |
Merge tag 'signed-efi-next' of git://github.com/agraf/u-boot
Patch queue for efi - 2019-02-13
Goodness this time around:
- HII protocol, finally allows us to run the UEFI Shell!
(experimantal, disabled by default)
- efi selftest now available on Cortex-M
- NVMe support for distro boot
- Lots of code cleanup
Diffstat (limited to 'lib/efi_driver/efi_uclass.c')
-rw-r--r-- | lib/efi_driver/efi_uclass.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/efi_driver/efi_uclass.c b/lib/efi_driver/efi_uclass.c index bb86ffd399..7cdf81f40c 100644 --- a/lib/efi_driver/efi_uclass.c +++ b/lib/efi_driver/efi_uclass.c @@ -233,8 +233,7 @@ static efi_status_t EFIAPI efi_uc_stop( } ret = EFI_CALL(systab.boottime->free_pool(entry_buffer)); if (ret != EFI_SUCCESS) - printf("%s(%u) %s: ERROR: Cannot free pool\n", - __FILE__, __LINE__, __func__); + printf("%s: ERROR: Cannot free pool\n", __func__); /* Detach driver from controller */ ret = EFI_CALL(systab.boottime->close_protocol( |