summaryrefslogtreecommitdiffstats
path: root/src/security/vboot/mrc_cache_hash_tpm.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/security/vboot/mrc_cache_hash_tpm.c')
-rw-r--r--src/security/vboot/mrc_cache_hash_tpm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/security/vboot/mrc_cache_hash_tpm.c b/src/security/vboot/mrc_cache_hash_tpm.c
index f67eae48cb39..07baed7eba44 100644
--- a/src/security/vboot/mrc_cache_hash_tpm.c
+++ b/src/security/vboot/mrc_cache_hash_tpm.c
@@ -41,7 +41,7 @@ void mrc_cache_update_hash(uint32_t index, const uint8_t *data, size_t size)
return;
}
- printk(BIOS_INFO, "MRC: TPM MRC hash idx 0x%x updated successfully.\n", index);
+ printk(BIOS_INFO, "MRC: TPM MRC hash idx %#x updated successfully.\n", index);
}
int mrc_cache_verify_hash(uint32_t index, const uint8_t *data, size_t size)
@@ -67,7 +67,7 @@ int mrc_cache_verify_hash(uint32_t index, const uint8_t *data, size_t size)
return 0;
}
- printk(BIOS_INFO, "MRC: Hash idx 0x%x comparison successful.\n", index);
+ printk(BIOS_INFO, "MRC: Hash idx %#x comparison successful.\n", index);
return 1;
}