diff options
author | Patrick Georgi <pgeorgi@chromium.org> | 2015-06-29 23:08:44 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2015-06-30 08:19:36 +0200 |
commit | 091b4ae7dee500fc9c950c8a3667da4f99758c94 (patch) | |
tree | bfb28b2a5e8952d1a10e8e18c21f6d6348a1b98a /src/drivers/i2c | |
parent | 5f2055d0d9e7f39e0d87e13e186716c6eda6e7a6 (diff) | |
download | coreboot-091b4ae7dee500fc9c950c8a3667da4f99758c94.tar.xz |
drivers/i2c/tpm: push tpm driver from verstage to libverstage
That way it's available wherever the verstage code ends up, bootblock,
verstage or romstage.
Change-Id: I0665e297f199acd60cff93e1b39812f183115d33
Signed-off-by: Patrick Georgi <pgeorgi@chromium.org>
Reviewed-on: http://review.coreboot.org/10707
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.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/drivers/i2c/tpm/Makefile.inc b/src/drivers/i2c/tpm/Makefile.inc index e6011367e5..6b003edf70 100644 --- a/src/drivers/i2c/tpm/Makefile.inc +++ b/src/drivers/i2c/tpm/Makefile.inc @@ -1,3 +1,3 @@ ramstage-$(CONFIG_I2C_TPM) += tis.c tpm.c romstage-$(CONFIG_I2C_TPM) += tis.c tpm.c -verstage-$(CONFIG_I2C_TPM) += tis.c tpm.c +libverstage-$(CONFIG_I2C_TPM) += tis.c tpm.c |