From d6aca44a2306392ad0e926396c49ff1da362daf6 Mon Sep 17 00:00:00 2001 From: Kevin O'Connor Date: Wed, 10 Jun 2015 11:00:17 -0400 Subject: tcg: Use seabios setup()/prepboot() calling convention for tcg Rename tcg externally called functions to more closely match other subsystems. Signed-off-by: Kevin O'Connor Tested-by: Stefan Berger --- src/tcgbios.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/tcgbios.h') diff --git a/src/tcgbios.h b/src/tcgbios.h index a3aa8704..4b7eaabe 100644 --- a/src/tcgbios.h +++ b/src/tcgbios.h @@ -364,9 +364,9 @@ enum ipltype { struct bregs; void tpm_interrupt_handler32(struct bregs *regs); -u32 tpm_start(void); -u32 tpm_leave_bios(void); -u32 tpm_s3_resume(void); +void tpm_setup(void); +void tpm_prepboot(void); +void tpm_s3_resume(void); u32 tpm_add_bcv(u32 bootdrv, const u8 *addr, u32 length); u32 tpm_add_cdrom(u32 bootdrv, const u8 *addr, u32 length); u32 tpm_add_cdrom_catalog(const u8 *addr, u32 length); -- cgit