From patchwork Mon May 16 23:46:11 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Felipe Balbi X-Patchwork-Id: 790172 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter2.kernel.org (8.14.4/8.14.3) with ESMTP id p4GNkPfo026427 for ; Mon, 16 May 2011 23:46:26 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755890Ab1EPXqY (ORCPT ); Mon, 16 May 2011 19:46:24 -0400 Received: from na3sys009aog112.obsmtp.com ([74.125.149.207]:56521 "EHLO na3sys009aog112.obsmtp.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753718Ab1EPXqY (ORCPT ); Mon, 16 May 2011 19:46:24 -0400 Received: from mail-bw0-f43.google.com ([209.85.214.43]) (using TLSv1) by na3sys009aob112.postini.com ([74.125.148.12]) with SMTP ID DSNKTdG3TxVeNve9A9SEOUQphw9geFAdMKF7@postini.com; Mon, 16 May 2011 16:46:23 PDT Received: by mail-bw0-f43.google.com with SMTP id 14so84874bwz.16 for ; Mon, 16 May 2011 16:46:23 -0700 (PDT) Received: by 10.205.32.65 with SMTP id sj1mr8157bkb.36.1305589582790; Mon, 16 May 2011 16:46:22 -0700 (PDT) Received: from localhost (cs181221225.pp.htv.fi [82.181.221.225]) by mx.google.com with ESMTPS id d10sm2919704bkw.23.2011.05.16.16.46.20 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 16 May 2011 16:46:21 -0700 (PDT) From: Felipe Balbi To: Linux ARM Kernel Mailing List Cc: Linux OMAP Mailing List , Tony Lindgren , Russell King , Felipe Balbi Subject: [RESEND/PATCH 1/2] arm: Kconfig: select correct HAVE_SPARSE_IRQ symbol Date: Tue, 17 May 2011 02:46:11 +0300 Message-Id: <1305589572-5812-1-git-send-email-balbi@ti.com> X-Mailer: git-send-email 1.7.4.1.343.ga91df Organization: Texas Instruments\n Sender: linux-omap-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-omap@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.6 (demeter2.kernel.org [140.211.167.43]); Mon, 16 May 2011 23:46:26 +0000 (UTC) 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 377a7a5..416b02f 100644 --- a/arch/arm/Kconfig +++ b/arch/arm/Kconfig @@ -541,7 +541,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. @@ -622,7 +622,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.