diff options
author | Miquel Raynal <miquel.raynal@bootlin.com> | 2018-07-19 22:35:11 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2018-07-28 11:58:09 -0400 |
commit | 58233075f972bacd2acfb47d1bc8fd069a1c3b10 (patch) | |
tree | 233c244efe827aca4608944a2ec911001fbe5ef2 /drivers/tpm | |
parent | d87434a2baf1db6d2a2582e3204c27fa5785935e (diff) | |
download | u-boot-58233075f972bacd2acfb47d1bc8fd069a1c3b10.tar.gz |
tpm: make TPM_V2 be compiled by default
TPM_V1 was already compiled by default. Now that both can be compiled
at the same time, compiled them both by default.
Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'drivers/tpm')
-rw-r--r-- | drivers/tpm/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/tpm/Kconfig b/drivers/tpm/Kconfig index 782a620f91..94629dffd2 100644 --- a/drivers/tpm/Kconfig +++ b/drivers/tpm/Kconfig @@ -120,6 +120,7 @@ endif # TPM_V1 config TPM_V2 bool "TPMv2.x support" depends on TPM + default y help Major TPM versions are not compatible at all, choose either one or the other. This option enables TPMv2.x drivers/commands. |