Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S965260AbdGTKbP (ORCPT ); Thu, 20 Jul 2017 06:31:15 -0400 Received: from terminus.zytor.com ([65.50.211.136]:56037 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S965245AbdGTKbM (ORCPT ); Thu, 20 Jul 2017 06:31:12 -0400 Date: Thu, 20 Jul 2017 03:26:37 -0700 From: tip-bot for Arnd Bergmann Message-ID: Cc: luto@kernel.org, peterz@infradead.org, mingo@kernel.org, torvalds@linux-foundation.org, arnd@arndb.de, tglx@linutronix.de, hpa@zytor.com, keescook@chromium.org, linux-kernel@vger.kernel.org, jpoimboe@redhat.com Reply-To: jpoimboe@redhat.com, linux-kernel@vger.kernel.org, hpa@zytor.com, keescook@chromium.org, tglx@linutronix.de, arnd@arndb.de, torvalds@linux-foundation.org, peterz@infradead.org, mingo@kernel.org, luto@kernel.org In-Reply-To: <20170719125310.2487451-8-arnd@arndb.de> References: <20170719125310.2487451-8-arnd@arndb.de> To: linux-tip-commits@vger.kernel.org Subject: [tip:x86/urgent] x86/platform: Add PCI dependency for PUNIT_ATOM_DEBUG Git-Commit-ID: d689c64d189e43d782fec5649fb0afe303c5b3f9 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 Content-Length: 1489 Lines: 41 Commit-ID: d689c64d189e43d782fec5649fb0afe303c5b3f9 Gitweb: http://git.kernel.org/tip/d689c64d189e43d782fec5649fb0afe303c5b3f9 Author: Arnd Bergmann AuthorDate: Wed, 19 Jul 2017 14:53:05 +0200 Committer: Ingo Molnar CommitDate: Thu, 20 Jul 2017 10:46:24 +0200 x86/platform: Add PCI dependency for PUNIT_ATOM_DEBUG The IOSF_MBI option requires PCI support, without it we get a harmless Kconfig warning when it gets selected by PUNIT_ATOM_DEBUG: warning: (X86_INTEL_LPSS && SND_SST_IPC_ACPI && MMC_SDHCI_ACPI && PUNIT_ATOM_DEBUG) selects IOSF_MBI which has unmet direct dependencies (PCI) This adds another dependency to avoid the warning. Signed-off-by: Arnd Bergmann Cc: Andy Lutomirski Cc: Josh Poimboeuf Cc: Kees Cook Cc: Linus Torvalds Cc: Peter Zijlstra Cc: Thomas Gleixner Link: http://lkml.kernel.org/r/20170719125310.2487451-8-arnd@arndb.de Signed-off-by: Ingo Molnar --- arch/x86/Kconfig.debug | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/x86/Kconfig.debug b/arch/x86/Kconfig.debug index fcb7604..cd20ca0 100644 --- a/arch/x86/Kconfig.debug +++ b/arch/x86/Kconfig.debug @@ -348,6 +348,7 @@ config X86_DEBUG_FPU config PUNIT_ATOM_DEBUG tristate "ATOM Punit debug driver" + depends on PCI select DEBUG_FS select IOSF_MBI ---help---