security/tpm/crtm.c: Remove set but unused variable

Change-Id: I3c97cb57fe13adee217783973691748d6c542abe
Signed-off-by: Arthur Heymans <arthur@aheymans.xyz>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/63070
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-by: Julius Werner <jwerner@chromium.org>
This commit is contained in:
Arthur Heymans 2022-03-24 01:17:39 +01:00 committed by Julius Werner
parent 44ce83b882
commit 73a7353550
1 changed files with 0 additions and 6 deletions

View File

@ -140,7 +140,6 @@ uint32_t tspi_cbfs_measurement(const char *name, uint32_t type, const struct vb2
int tspi_measure_cache_to_pcr(void)
{
int i;
enum vb2_hash_algorithm hash_alg;
struct tcpa_table *tclt = tcpa_log_init();
/* This means the table is empty. */
@ -151,11 +150,6 @@ int tspi_measure_cache_to_pcr(void)
printk(BIOS_WARNING, "TCPA: Log non-existent!\n");
return VB2_ERROR_UNKNOWN;
}
if (CONFIG(TPM1)) {
hash_alg = VB2_HASH_SHA1;
} else { /* CONFIG_TPM2 */
hash_alg = VB2_HASH_SHA256;
}
printk(BIOS_DEBUG, "TPM: Write digests cached in TCPA log to PCR\n");
for (i = 0; i < tclt->num_entries; i++) {