diff options
author | Tom Rini <trini@konsulko.com> | 2021-09-26 14:15:14 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2021-09-26 14:15:14 -0400 |
commit | 76ad0246834e2c57974b3a472fdc7c5584964caa (patch) | |
tree | ef6420bf3394a1114afe8c40fd31c646d1376a57 /include | |
parent | 8284d6f838684cfa6e3303a447deb38027c5d7f0 (diff) | |
parent | 346cee3ac5782fefeaeda2b54914b029547adf52 (diff) |
Merge tag 'efi-2021-10-rc5' of https://source.denx.de/u-boot/custodians/u-boot-efi
Pull request for efi-2021-10-rc5
Documentation:
* add /config bindings to HTML documentation
UEFI
* Fix number_of_algorithms field in TCG EFI Protocol
Diffstat (limited to 'include')
-rw-r--r-- | include/efi_tcg2.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/include/efi_tcg2.h b/include/efi_tcg2.h index 5a1a36212e..8f02d4fb0b 100644 --- a/include/efi_tcg2.h +++ b/include/efi_tcg2.h @@ -165,8 +165,6 @@ struct tcg_efi_spec_id_event_algorithm_size { * @digest_sizes: array of number_of_algorithms pairs * 1st member defines the algorithm id * 2nd member defines the algorithm size - * @vendor_info_size: size in bytes for vendor specific info - * @vendor_info: vendor specific info */ struct tcg_efi_spec_id_event { u8 signature[16]; @@ -176,10 +174,7 @@ struct tcg_efi_spec_id_event { u8 spec_errata; u8 uintn_size; u32 number_of_algorithms; - struct tcg_efi_spec_id_event_algorithm_size digest_sizes[TPM2_NUM_PCR_BANKS]; - u8 vendor_info_size; - /* U-Boot does not provide any vendor info */ - u8 vendor_info[]; + struct tcg_efi_spec_id_event_algorithm_size digest_sizes[]; } __packed; /** |