From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:35773) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1e6kMm-0008Vi-Fa for qemu-devel@nongnu.org; Mon, 23 Oct 2017 17:34:41 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1e6kMl-0000Dy-DS for qemu-devel@nongnu.org; Mon, 23 Oct 2017 17:34:36 -0400 Sender: =?UTF-8?Q?Philippe_Mathieu=2DDaud=C3=A9?= From: =?UTF-8?q?Philippe=20Mathieu-Daud=C3=A9?= Date: Mon, 23 Oct 2017 18:33:59 -0300 Message-Id: <20171023213359.23025-4-f4bug@amsat.org> In-Reply-To: <20171023213359.23025-1-f4bug@amsat.org> References: <20171023213359.23025-1-f4bug@amsat.org> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: [Qemu-devel] [PATCH 3/3] vl: remove unnecessary #ifdef CONFIG_TPM List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: BALATON Zoltan , "Richard W . M . Jones" , =?UTF-8?q?Marc-Andr=C3=A9=20Lureau?= , Stefan Berger , Peter Maydell Cc: =?UTF-8?q?Philippe=20Mathieu-Daud=C3=A9?= , qemu-devel@nongnu.org, qemu-trivial@nongnu.org, =?UTF-8?q?Marc-Andr=C3=A9=20Lureau?= a stub is now provided. Signed-off-by: Philippe Mathieu-Daudé --- vl.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/vl.c b/vl.c index 0723835bbf..ec299099ff 100644 --- a/vl.c +++ b/vl.c @@ -4624,11 +4624,9 @@ int main(int argc, char **argv, char **envp) exit(1); } -#ifdef CONFIG_TPM if (tpm_init() < 0) { exit(1); } -#endif /* init the bluetooth world */ if (foreach_device_config(DEV_BT, bt_parse)) -- 2.15.0.rc1