diff options
author | Tom Rini <trini@konsulko.com> | 2022-05-04 12:08:40 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-05-04 12:08:40 -0400 |
commit | 1739a6db5403d187902dcebca548de0644c8078f (patch) | |
tree | 62e9a921915bbd79cec42f528b6c454e8488f862 /lib/efi_loader/efi_boottime.c | |
parent | c3d451d5e6b7c2ea6d83397d5b6c986ff6ab4ee3 (diff) | |
parent | 2158b0da220ccbe969bc18668263141d9a89f13e (diff) |
Merge tag 'efi-2022-07-rc2-2' of https://source.denx.de/u-boot/custodians/u-boot-efi
Pull request for efi-2022-07-rc2-2
* Test
Unit test for 'bootmenu' command
* UEFI
Preparatory patches for implementing a UEFI boot options based menu
Diffstat (limited to 'lib/efi_loader/efi_boottime.c')
-rw-r--r-- | lib/efi_loader/efi_boottime.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/lib/efi_loader/efi_boottime.c b/lib/efi_loader/efi_boottime.c index 5bcb8253ed..4da64b5d29 100644 --- a/lib/efi_loader/efi_boottime.c +++ b/lib/efi_loader/efi_boottime.c @@ -1799,10 +1799,9 @@ failure: * * Return: status code */ -static efi_status_t EFIAPI efi_locate_device_path( - const efi_guid_t *protocol, - struct efi_device_path **device_path, - efi_handle_t *device) +efi_status_t EFIAPI efi_locate_device_path(const efi_guid_t *protocol, + struct efi_device_path **device_path, + efi_handle_t *device) { struct efi_device_path *dp; size_t i; |