From: Vladimir Serbinenko Date: Fri, 22 Mar 2019 16:12:57 +0000 (+0100) Subject: efi/tpm.h: Fix hash_log_extend_event definition. X-Git-Tag: grub-2.04-rc1~16 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=98c3a1a76b183d1cbf684427b7e70f669a3d381b;p=thirdparty%2Fgrub.git efi/tpm.h: Fix hash_log_extend_event definition. I didn't check the spec but pointer to address doesn't make much sense and doesn't match the code. Signed-off-by: Vladimir Serbinenko --- diff --git a/include/grub/efi/tpm.h b/include/grub/efi/tpm.h index 79c478832..3ea6b4de1 100644 --- a/include/grub/efi/tpm.h +++ b/include/grub/efi/tpm.h @@ -164,7 +164,7 @@ struct grub_efi_tpm2_protocol grub_efi_boolean_t * EventLogTruncated); grub_efi_status_t (*hash_log_extend_event) (struct grub_efi_tpm2_protocol * this, grub_efi_uint64_t Flags, - grub_efi_physical_address_t * + grub_efi_physical_address_t DataToHash, grub_efi_uint64_t DataToHashLen, EFI_TCG2_EVENT *EfiTcgEvent);