Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756439Ab1BQNiR (ORCPT ); Thu, 17 Feb 2011 08:38:17 -0500 Received: from vpn.id2.novell.com ([195.33.99.129]:60533 "EHLO vpn.id2.novell.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756173Ab1BQNiP convert rfc822-to-8bit (ORCPT ); Thu, 17 Feb 2011 08:38:15 -0500 Message-Id: <4D5D3309020000780003264A@vpn.id2.novell.com> X-Mailer: Novell GroupWise Internet Agent 8.0.1 Date: Thu, 17 Feb 2011 13:39:05 +0000 From: "Jan Beulich" To: Cc: , Subject: [PATCH] streamline kernel/irq/Kconfig Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 8BIT Content-Disposition: inline Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1235 Lines: 59 "def_bool n" without prompt is pointless, these should be just "bool". Signed-off-by: Jan Beulich --- kernel/irq/Kconfig | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) --- 2.6.38-rc5/kernel/irq/Kconfig +++ 2.6.38-rc5-kconfig-irq/kernel/irq/Kconfig @@ -1,5 +1,5 @@ config HAVE_GENERIC_HARDIRQS - def_bool n + bool if HAVE_GENERIC_HARDIRQS menu "IRQ subsystem" @@ -11,26 +11,26 @@ config GENERIC_HARDIRQS # Select this to disable the deprecated stuff config GENERIC_HARDIRQS_NO_DEPRECATED - def_bool n + bool # Options selectable by the architecture code config HAVE_SPARSE_IRQ - def_bool n + bool config GENERIC_IRQ_PROBE - def_bool n + bool config GENERIC_PENDING_IRQ - def_bool n + bool config AUTO_IRQ_AFFINITY - def_bool n + bool config IRQ_PER_CPU - def_bool n + bool config HARDIRQS_SW_RESEND - def_bool n + bool config SPARSE_IRQ bool "Support sparse irq numbering" -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/