From 42786d0f4d44bf45ae3ed71c14c7f8700e9e483f 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 2d7630137..51ab02e27 100644 --- a/include/grub/efi/tpm.h +++ b/include/grub/efi/tpm.h @@ -162,7 +162,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);