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/tpm/tss/tcg-2.0 | |
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/tpm/tss/tcg-2.0')
-rw-r--r-- | src/security/tpm/tss/tcg-2.0/tss_structures.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/security/tpm/tss/tcg-2.0/tss_structures.h b/src/security/tpm/tss/tcg-2.0/tss_structures.h index cb0283045f..a73f4c48e6 100644 --- a/src/security/tpm/tss/tcg-2.0/tss_structures.h +++ b/src/security/tpm/tss/tcg-2.0/tss_structures.h @@ -8,7 +8,7 @@ * constants and structures needed for functions used in coreboot. */ #include <types.h> -#include "../common/tss_common.h" +#include <security/tpm/tss_errors.h> /* This should be plenty for what firmware needs. */ #define TPM_BUFFER_SIZE 256 |