From patchwork Sat Jul 14 12:16:32 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Miquel Raynal X-Patchwork-Id: 943935 X-Patchwork-Delegate: trini@ti.com Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=none (mailfrom) smtp.mailfrom=lists.denx.de (client-ip=81.169.180.215; helo=lists.denx.de; envelope-from=u-boot-bounces@lists.denx.de; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=bootlin.com Received: from lists.denx.de (dione.denx.de [81.169.180.215]) by ozlabs.org (Postfix) with ESMTP id 41STJP6PhGz9s1R for ; Sat, 14 Jul 2018 22:19:49 +1000 (AEST) Received: by lists.denx.de (Postfix, from userid 105) id 5C90FC22014; Sat, 14 Jul 2018 12:18:38 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on lists.denx.de X-Spam-Level: X-Spam-Status: No, score=0.0 required=5.0 tests=none autolearn=unavailable autolearn_force=no version=3.4.0 Received: from lists.denx.de (localhost [IPv6:::1]) by lists.denx.de (Postfix) with ESMTP id BAFA5C2205E; Sat, 14 Jul 2018 12:16:56 +0000 (UTC) Received: by lists.denx.de (Postfix, from userid 105) id 34396C21F0C; Sat, 14 Jul 2018 12:16:41 +0000 (UTC) Received: from mail.bootlin.com (mail.bootlin.com [62.4.15.54]) by lists.denx.de (Postfix) with ESMTP id 9F1C8C22033 for ; Sat, 14 Jul 2018 12:16:38 +0000 (UTC) Received: by mail.bootlin.com (Postfix, from userid 110) id 40F67207C8; Sat, 14 Jul 2018 14:16:38 +0200 (CEST) Received: from localhost.localdomain (unknown [91.224.148.103]) by mail.bootlin.com (Postfix) with ESMTPSA id C2CF320717; Sat, 14 Jul 2018 14:16:37 +0200 (CEST) From: Miquel Raynal To: Tom Rini , Simon Glass Date: Sat, 14 Jul 2018 14:16:32 +0200 Message-Id: <20180714121633.15180-6-miquel.raynal@bootlin.com> X-Mailer: git-send-email 2.14.1 In-Reply-To: <20180714121633.15180-1-miquel.raynal@bootlin.com> References: <20180714121633.15180-1-miquel.raynal@bootlin.com> Cc: u-boot@lists.denx.de, Miquel Raynal , Michael Roeder Subject: [U-Boot] [PATCH 5/6] tpm: make TPM_V2 be compiled by default X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.18 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" 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 Reviewed-by: Simon Glass --- drivers/tpm/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/tpm/Kconfig b/drivers/tpm/Kconfig index 704ab81e2d..e20768fa5e 100644 --- a/drivers/tpm/Kconfig +++ b/drivers/tpm/Kconfig @@ -121,6 +121,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.