diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2015-06-10 11:00:17 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2015-06-11 18:36:45 -0400 |
commit | d6aca44a2306392ad0e926396c49ff1da362daf6 (patch) | |
tree | d9873f98e13f99894410a3622da807252a93417d /src/tcgbios.h | |
parent | 5deeec178249d84cef99c9531d5e7bee4adcf6cb (diff) | |
download | seabios-d6aca44a2306392ad0e926396c49ff1da362daf6.tar.gz |
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 <kevin@koconnor.net>
Tested-by: Stefan Berger <stefanb@linux.vnet.ibm.com>
Diffstat (limited to 'src/tcgbios.h')
-rw-r--r-- | src/tcgbios.h | 6 |
1 files changed, 3 insertions, 3 deletions
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); |