From 98c3a1a76b183d1cbf684427b7e70f669a3d381b Mon Sep 17 00:00:00 2001 From: Vladimir Serbinenko Date: Fri, 22 Mar 2019 17:12:57 +0100 Subject: [PATCH] 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 --- include/grub/efi/tpm.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);