From mboxrd@z Thu Jan 1 00:00:00 1970 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S934993AbeAOQxc (ORCPT + 1 other); Mon, 15 Jan 2018 11:53:32 -0500 Received: from terminus.zytor.com ([65.50.211.136]:49167 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S934380AbeAOQxa (ORCPT ); Mon, 15 Jan 2018 11:53:30 -0500 Date: Mon, 15 Jan 2018 08:52:12 -0800 From: tip-bot for Arnd Bergmann Message-ID: Cc: hpa@zytor.com, mingo@kernel.org, arnd@arndb.de, jan.kiszka@siemens.com, tglx@linutronix.de, linux-kernel@vger.kernel.org Reply-To: tglx@linutronix.de, linux-kernel@vger.kernel.org, jan.kiszka@siemens.com, arnd@arndb.de, mingo@kernel.org, hpa@zytor.com In-Reply-To: <20180115155150.51407-1-arnd@arndb.de> References: <20180115155150.51407-1-arnd@arndb.de> To: linux-tip-commits@vger.kernel.org Subject: [tip:x86/platform] x86/jailhouse: Add PCI dependency Git-Commit-ID: abde587b61a3ddb2918385f95ef2b3ca37d5a017 X-Mailer: tip-git-log-daemon Robot-ID: Robot-Unsubscribe: Contact to get blacklisted from these emails MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset=UTF-8 Content-Disposition: inline Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Return-Path: Commit-ID: abde587b61a3ddb2918385f95ef2b3ca37d5a017 Gitweb: https://git.kernel.org/tip/abde587b61a3ddb2918385f95ef2b3ca37d5a017 Author: Arnd Bergmann AuthorDate: Mon, 15 Jan 2018 16:51:20 +0100 Committer: Thomas Gleixner CommitDate: Mon, 15 Jan 2018 17:46:59 +0100 x86/jailhouse: Add PCI dependency Building jailhouse support without PCI results in a link error: arch/x86/kernel/jailhouse.o: In function `jailhouse_init_platform': jailhouse.c:(.init.text+0x235): undefined reference to `pci_probe' arch/x86/kernel/jailhouse.o: In function `jailhouse_pci_arch_init': jailhouse.c:(.init.text+0x265): undefined reference to `pci_direct_init' jailhouse.c:(.init.text+0x26c): undefined reference to `pcibios_last_bus' Add the missing Kconfig dependency. Fixes: a0c01e4bb92d ("x86/jailhouse: Initialize PCI support") Signed-off-by: Arnd Bergmann Signed-off-by: Thomas Gleixner Cc: Jan Kiszka Link: https://lkml.kernel.org/r/20180115155150.51407-1-arnd@arndb.de --- arch/x86/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig index a936e29..390be2e 100644 --- a/arch/x86/Kconfig +++ b/arch/x86/Kconfig @@ -798,7 +798,7 @@ config PARAVIRT_CLOCK config JAILHOUSE_GUEST bool "Jailhouse non-root cell support" - depends on X86_64 + depends on X86_64 && PCI select X86_PM_TIMER ---help--- This option allows to run Linux as guest in a Jailhouse non-root