From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753319AbbBSA1F (ORCPT ); Wed, 18 Feb 2015 19:27:05 -0500 Received: from terminus.zytor.com ([198.137.202.10]:47600 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752360AbbBSA1D (ORCPT ); Wed, 18 Feb 2015 19:27:03 -0500 Date: Wed, 18 Feb 2015 16:26:50 -0800 From: tip-bot for Jan Beulich Message-ID: Cc: mingo@kernel.org, JBeulich@suse.com, jbeulich@suse.com, linux-kernel@vger.kernel.org, hpa@zytor.com, tglx@linutronix.de Reply-To: hpa@zytor.com, tglx@linutronix.de, linux-kernel@vger.kernel.org, jbeulich@suse.com, mingo@kernel.org, JBeulich@suse.com In-Reply-To: <54D39BC9020000780005D688@mail.emea.novell.com> References: <54D39BC9020000780005D688@mail.emea.novell.com> To: linux-tip-commits@vger.kernel.org Subject: [tip:x86/build] x86/Kconfig: Simplify X86_IO_APIC dependencies Git-Commit-ID: b1da1e715d4faf01468b7f45f7098922bc85ea8e 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 Commit-ID: b1da1e715d4faf01468b7f45f7098922bc85ea8e Gitweb: http://git.kernel.org/tip/b1da1e715d4faf01468b7f45f7098922bc85ea8e Author: Jan Beulich AuthorDate: Thu, 5 Feb 2015 15:35:21 +0000 Committer: Ingo Molnar CommitDate: Wed, 18 Feb 2015 22:09:33 +0100 x86/Kconfig: Simplify X86_IO_APIC dependencies Since dependencies are transitive, we don't really need to repeat those of X86_UP_IOAPIC. Furthermore avoid the symbol getting entered into .config when it is off by having the default simply Y and the dependencies solely handled via the intended for that purpose "depends on". Signed-off-by: Jan Beulich Link: http://lkml.kernel.org/r/54D39BC9020000780005D688@mail.emea.novell.com Signed-off-by: Ingo Molnar --- arch/x86/Kconfig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig index 463d883..afb75f5 100644 --- a/arch/x86/Kconfig +++ b/arch/x86/Kconfig @@ -893,8 +893,8 @@ config X86_LOCAL_APIC select GENERIC_IRQ_LEGACY_ALLOC_HWIRQ config X86_IO_APIC - def_bool X86_64 || SMP || X86_32_NON_STANDARD || X86_UP_IOAPIC - depends on X86_LOCAL_APIC + def_bool y + depends on X86_LOCAL_APIC || X86_UP_IOAPIC select IRQ_DOMAIN config X86_REROUTE_FOR_BROKEN_BOOT_IRQS