diff options
author | Jon Murphy <jpmurphy@google.com> | 2023-09-20 10:43:07 -0600 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2023-09-22 18:41:35 +0000 |
commit | cce6d13aa733d9224dd538f60fed691e2fb2780b (patch) | |
tree | b0b2e4abf00113bc6d6b2420fe0ae7a28b2fe90c /src/security/vboot | |
parent | ddfe71953841a950a63fd1aa22e25624812c7a28 (diff) |
security/tpm: Remove unnecessary tss_common.h
Remove the unnecessary tss_common.h header from the repo.
tss_errors.h is a more appropriate place for the TPM_SUCCESS
value, and the other define is only used by tpm_common.c and
can be placed there.
BUG=b:296439237
TEST=Builds
Change-Id: I99cf90f244a75c1eeab5e9e1500e05c24ae0a8e5
Signed-off-by: Jon Murphy <jpmurphy@google.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/78033
Reviewed-by: Tim Van Patten <timvp@google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Julius Werner <jwerner@chromium.org>
Diffstat (limited to 'src/security/vboot')
-rw-r--r-- | src/security/vboot/tpm_common.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/security/vboot/tpm_common.c b/src/security/vboot/tpm_common.c index ad333c6f9b..05685ad926 100644 --- a/src/security/vboot/tpm_common.c +++ b/src/security/vboot/tpm_common.c @@ -7,6 +7,7 @@ #define TPM_PCR_BOOT_MODE "VBOOT: boot mode" #define TPM_PCR_GBB_HWID_NAME "VBOOT: GBB HWID" +#define TPM_PCR_MINIMUM_DIGEST_SIZE 20 uint32_t vboot_setup_tpm(struct vb2_context *ctx) { |