diff options
author | Tom Rini <trini@konsulko.com> | 2023-07-11 13:27:32 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-07-11 13:27:32 -0400 |
commit | 8e21064cb3452950b09301baec06d86e37342471 (patch) | |
tree | a54f8b93191c102403147e44d8fd2fb2c9c9b65f /tools/eficapsule.h | |
parent | 7876a695468c9bc17a6dc02054da101450468a40 (diff) | |
parent | e05a4b12a056fd7fe22e85715c8f5e5e811fb551 (diff) | |
download | u-boot-8e21064cb3452950b09301baec06d86e37342471.tar.gz u-boot-8e21064cb3452950b09301baec06d86e37342471.tar.bz2 u-boot-8e21064cb3452950b09301baec06d86e37342471.zip |
Merge tag 'efi-2023-07-rc7' of https://source.denx.de/u-boot/custodians/u-boot-efi
Pull request efi-2023-07-rc7
Documentation:
* Fix links to Linux kernel documentation
UEFI:
* Fix memory leak in efidebug dh subcommand
* Fix underflow when calculating remaining variable store size
* Increase default variable store size to 64 KiB
* mkeficapsule: fix efi_firmware_management_capsule_header data type
Diffstat (limited to 'tools/eficapsule.h')
-rw-r--r-- | tools/eficapsule.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/eficapsule.h b/tools/eficapsule.h index 753fb73313..2099a2e9b8 100644 --- a/tools/eficapsule.h +++ b/tools/eficapsule.h @@ -63,7 +63,7 @@ struct efi_firmware_management_capsule_header { uint32_t version; uint16_t embedded_driver_count; uint16_t payload_item_count; - uint32_t item_offset_list[]; + uint64_t item_offset_list[]; } __packed; /* image_capsule_support */ |