diff options
author | Tom Rini <trini@konsulko.com> | 2019-02-18 15:48:01 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-02-18 15:48:01 -0500 |
commit | beff8e34b22d708df11b32b6ed27be49ba345875 (patch) | |
tree | 24e03177fb25d4721a77ddaa38218579c3455353 /lib/efi_selftest/efi_selftest_startimage_exit.c | |
parent | 500ad54e35c636b0a05170753da58fcd8c8de6f2 (diff) | |
parent | 997fc12ec91eccf6b7485565864f3eb8ce74def2 (diff) |
Merge tag 'efi-2019-04-rc2' of https://github.com/xypron2/u-boot
The patches fix multiple errors. Mentionable are:
- EFI unit tests (bootefi selftest) can run on i386.
- `make tests` executes the Unicode unit tests.
The LoadImage patch is preparing for further rework to be delivered
in v2019.07.
Diffstat (limited to 'lib/efi_selftest/efi_selftest_startimage_exit.c')
-rw-r--r-- | lib/efi_selftest/efi_selftest_startimage_exit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/efi_selftest/efi_selftest_startimage_exit.c b/lib/efi_selftest/efi_selftest_startimage_exit.c index 0d9e16437a4..fa4b7d4a9b6 100644 --- a/lib/efi_selftest/efi_selftest_startimage_exit.c +++ b/lib/efi_selftest/efi_selftest_startimage_exit.c @@ -103,7 +103,7 @@ static int teardown(void) efi_status_t r = EFI_ST_SUCCESS; if (image) { - r = efi_free_pool(image); + r = boottime->free_pool(image); if (r != EFI_SUCCESS) { efi_st_error("Failed to free image\n"); return EFI_ST_FAILURE; |