aboutsummaryrefslogtreecommitdiff
path: root/src/drivers/i2c
diff options
context:
space:
mode:
authorPatrick Georgi <pgeorgi@chromium.org>2015-06-30 12:39:23 +0200
committerStefan Reinauer <stefan.reinauer@coreboot.org>2015-06-30 21:34:19 +0200
commit78390f130325ff2272a256fd0126bbf06c3bbd29 (patch)
tree8e05dcde3f4d4cebce6f18897bf4ae0e663964c1 /src/drivers/i2c
parent2f31ef11154441b13c0f9d75b02b14fd9fa835a6 (diff)
drivers/i2c/tpm: move tpm driver around a bit more.
The many different places to put vboot support in can be confusing. Instead of using libverstage (which isn't enough since those functions are sometimes called outside that, too), mention all stages where it can resides explicitly. Change-Id: Idddb9f5e2ef7bcc273f429d9f432bd37b4573567 Signed-off-by: Patrick Georgi <pgeorgi@chromium.org> Reviewed-on: http://review.coreboot.org/10728 Tested-by: build bot (Jenkins) Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Diffstat (limited to 'src/drivers/i2c')
-rw-r--r--src/drivers/i2c/tpm/Makefile.inc3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/drivers/i2c/tpm/Makefile.inc b/src/drivers/i2c/tpm/Makefile.inc
index 6b003edf70..4f5913fe39 100644
--- a/src/drivers/i2c/tpm/Makefile.inc
+++ b/src/drivers/i2c/tpm/Makefile.inc
@@ -1,3 +1,4 @@
ramstage-$(CONFIG_I2C_TPM) += tis.c tpm.c
romstage-$(CONFIG_I2C_TPM) += tis.c tpm.c
-libverstage-$(CONFIG_I2C_TPM) += tis.c tpm.c
+verstage-$(CONFIG_I2C_TPM) += tis.c tpm.c
+bootblock-$(CONFIG_I2C_TPM) += tis.c tpm.c