diff options
author | Tom Rini <trini@konsulko.com> | 2019-03-29 09:21:30 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-03-29 09:21:30 -0400 |
commit | b357ae5ed697da038d0ee6807f308f9177fcb3a7 (patch) | |
tree | a0bdfd1da0b75bd64e7e8f939e1f16ea76a07660 /lib/efi_loader/efi_file.c | |
parent | 1111ff671f65a71f8577fe145b53f1f0c920faa4 (diff) | |
parent | 9ba712dc84e8824055c368a385794f69aabab661 (diff) |
Merge tag 'efi-2019-04-rc5-2' of git://git.denx.de/u-boot-efi
Pull request for UEFI system for v2019.04-rc5-2
This patch series contains a bug fix for a double free in a UEFI unit
test. The other patches are documentation only (except for the definition
of two additional constants).
Diffstat (limited to 'lib/efi_loader/efi_file.c')
-rw-r--r-- | lib/efi_loader/efi_file.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/efi_loader/efi_file.c b/lib/efi_loader/efi_file.c index bc715218a1b..0483403be0d 100644 --- a/lib/efi_loader/efi_file.c +++ b/lib/efi_loader/efi_file.c @@ -628,6 +628,10 @@ static efi_status_t EFIAPI efi_file_flush(struct efi_file_handle *file) } static const struct efi_file_handle efi_file_handle_protocol = { + /* + * TODO: We currently only support EFI file protocol revision 0x00010000 + * while UEFI specs 2.4 - 2.7 prescribe revision 0x00020000. + */ .rev = EFI_FILE_PROTOCOL_REVISION, .open = efi_file_open, .close = efi_file_close, |