From bf254dd3bc8e77a2cadbc8bffecae1e711fb9002 Mon Sep 17 00:00:00 2001
From: Aaron Durbin <adurbin@chromium.org>
Date: Mon, 27 Mar 2017 17:00:03 -0500
Subject: drivers/i2c/tpm: remove unused types from tpm.h

There are unused structures/types in the tpm.h header file.
Remove them.

BUG=b:36598499

Change-Id: Iddc147640dcec70e80791846eb46298de1070672
Signed-off-by: Aaron Durbin <adurbin@chromium.org>
Reviewed-on: https://review.coreboot.org/19059
Reviewed-by: Furquan Shaikh <furquan@google.com>
Tested-by: build bot (Jenkins)
---
 src/drivers/i2c/tpm/tpm.h | 56 -----------------------------------------------
 1 file changed, 56 deletions(-)

(limited to 'src/drivers/i2c')

diff --git a/src/drivers/i2c/tpm/tpm.h b/src/drivers/i2c/tpm/tpm.h
index 403620f0d6..3a9a2ab949 100644
--- a/src/drivers/i2c/tpm/tpm.h
+++ b/src/drivers/i2c/tpm/tpm.h
@@ -87,62 +87,6 @@ struct tpm_chip {
 	struct tpm_vendor_specific vendor;
 };
 
-struct tpm_input_header {
-	uint16_t tag;
-	uint32_t length;
-	uint32_t ordinal;
-} __attribute__ ((packed));
-
-struct tpm_output_header {
-	uint16_t tag;
-	uint32_t length;
-	uint32_t return_code;
-} __attribute__ ((packed));
-
-struct timeout_t {
-	uint32_t a;
-	uint32_t b;
-	uint32_t c;
-	uint32_t d;
-} __attribute__ ((packed));
-
-struct duration_t {
-	uint32_t tpm_short;
-	uint32_t tpm_medium;
-	uint32_t tpm_long;
-} __attribute__ ((packed));
-
-typedef union {
-	struct timeout_t timeout;
-	struct duration_t duration;
-} cap_t;
-
-struct tpm_getcap_params_in {
-	uint32_t cap;
-	uint32_t subcap_size;
-	uint32_t subcap;
-} __attribute__ ((packed));
-
-struct tpm_getcap_params_out {
-	uint32_t cap_size;
-	cap_t cap;
-} __attribute__ ((packed));
-
-typedef union {
-	struct tpm_input_header in;
-	struct tpm_output_header out;
-} tpm_cmd_header;
-
-typedef union {
-	struct tpm_getcap_params_out getcap_out;
-	struct tpm_getcap_params_in getcap_in;
-} tpm_cmd_params;
-
-struct tpm_cmd_t {
-	tpm_cmd_header header;
-	tpm_cmd_params params;
-} __attribute__ ((packed));
-
 /* ---------- Interface for TPM vendor ------------ */
 
 int tpm_vendor_probe(unsigned int bus, uint32_t addr);
-- 
cgit v1.2.3