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>
This commit is contained in:
Patrick Georgi 2015-06-30 12:39:23 +02:00 committed by Stefan Reinauer
parent 2f31ef1115
commit 78390f1303
1 changed files with 2 additions and 1 deletions

View File

@ -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