From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754589Ab1BBQcW (ORCPT ); Wed, 2 Feb 2011 11:32:22 -0500 Received: from na3sys009aog117.obsmtp.com ([74.125.149.242]:45674 "EHLO na3sys009aog117.obsmtp.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754557Ab1BBQcS (ORCPT ); Wed, 2 Feb 2011 11:32:18 -0500 From: Felipe Balbi To: Linux ARM Kernel Mailing List Cc: Linux Kernel Mailing List , Linux OMAP Mailing List , Russell King , Tony Lindgren , Andrew Morton , Felipe Balbi Subject: [PATCH 1/2] arm: Kconfig: select correct HAVE_SPARSE_IRQ symbol Date: Wed, 2 Feb 2011 18:31:54 +0200 Message-Id: <1296664315-32108-2-git-send-email-balbi@ti.com> X-Mailer: git-send-email 1.7.4.rc2 In-Reply-To: <1296664315-32108-1-git-send-email-balbi@ti.com> References: <1296664315-32108-1-git-send-email-balbi@ti.com> Organization: Texas Instruments\n Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org commit e2a93ecc7fc469dab52323c11a2d8ceaa62aac7b (ARM: Use genirq definitions from kernel/irq/Kconfig) made ARM Kconfig use the generic Kconfig symbols from kernel/irq/Kconfig but did not fix the boards which were using the older symbols, fix them. Signed-off-by: Felipe Balbi --- arch/arm/Kconfig | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig index 5cff165..09a5c11 100644 --- a/arch/arm/Kconfig +++ b/arch/arm/Kconfig @@ -529,7 +529,7 @@ config ARCH_MMP select HAVE_SCHED_CLOCK select TICK_ONESHOT select PLAT_PXA - select SPARSE_IRQ + select HAVE_SPARSE_IRQ help Support for Marvell's PXA168/PXA910(MMP) and MMP2 processor line. @@ -610,7 +610,7 @@ config ARCH_PXA select HAVE_SCHED_CLOCK select TICK_ONESHOT select PLAT_PXA - select SPARSE_IRQ + select HAVE_SPARSE_IRQ help Support for Intel/Marvell's PXA2xx/PXA3xx processor line. -- 1.7.4.rc2