diff options
author | Tom Rini | 2022-07-13 21:31:46 -0400 |
---|---|---|
committer | Tom Rini | 2022-07-13 21:31:46 -0400 |
commit | 854d6de6107bca044db362612f39691f4f5395ca (patch) | |
tree | 7ccfd331396ba02a8d5a0fd1a77f3f67f80895c0 /include | |
parent | 357fa8bb4d40abf411a6cca70f5a2dd6413028ea (diff) | |
parent | a093d72e628a798238269eb77850d57ee50198bb (diff) |
Merge tag 'efi-2022-10-rc1' of https://source.denx.de/u-boot/custodians/u-boot-efi
Pull request for efi-2022-10-rc1
Documentation:
* rework the mkimage.1 man-page
* add a statistics page for v2022.07
* update environment description
UEFI:
* add Ilias Apalodimas as co-maintainer
* fix a memory leak in efi_set_bootdev()
* suppress a build warning
Diffstat (limited to 'include')
-rw-r--r-- | include/efi_loader.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/efi_loader.h b/include/efi_loader.h index 5b41985244e..3a63a1f75fd 100644 --- a/include/efi_loader.h +++ b/include/efi_loader.h @@ -802,6 +802,9 @@ ssize_t efi_dp_check_length(const struct efi_device_path *dp, (((_dp)->type == DEVICE_PATH_TYPE_##_type) && \ ((_dp)->sub_type == DEVICE_PATH_SUB_TYPE_##_subtype)) +/* template END node: */ +extern const struct efi_device_path END; + /* Indicate supported runtime services */ efi_status_t efi_init_runtime_supported(void); |