diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2015-12-29 23:14:22 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2016-01-05 15:05:14 -0500 |
commit | e98fafaa5e68d4fa65f872e522d2f8da10f68363 (patch) | |
tree | 11e71e801880d4cc3771e5f57e845523a18b9e41 /src/tcgbios.h | |
parent | 71479612401b794e6cb5025f61e5352c51f35877 (diff) | |
download | seabios-e98fafaa5e68d4fa65f872e522d2f8da10f68363.tar.gz |
tpm: Don't return a status from external bios measurement functions
The callers of the measurements don't care what happens, so no need to
return a status.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/tcgbios.h')
-rw-r--r-- | src/tcgbios.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/tcgbios.h b/src/tcgbios.h index 7934fc3a..6040b0c4 100644 --- a/src/tcgbios.h +++ b/src/tcgbios.h @@ -9,10 +9,10 @@ void tpm_interrupt_handler32(struct bregs *regs); 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); -u32 tpm_option_rom(const void *addr, u32 len); +void tpm_add_bcv(u32 bootdrv, const u8 *addr, u32 length); +void tpm_add_cdrom(u32 bootdrv, const u8 *addr, u32 length); +void tpm_add_cdrom_catalog(const u8 *addr, u32 length); +void tpm_option_rom(const void *addr, u32 len); int tpm_is_working(void); void tpm_menu(void); |