From patchwork Wed Jun 15 13:02:39 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Felipe Balbi X-Patchwork-Id: 881802 Received: from merlin.infradead.org (merlin.infradead.org [205.233.59.134]) by demeter1.kernel.org (8.14.4/8.14.4) with ESMTP id p5FD3LK6007939 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Wed, 15 Jun 2011 13:03:42 GMT Received: from canuck.infradead.org ([2001:4978:20e::1]) by merlin.infradead.org with esmtps (Exim 4.76 #1 (Red Hat Linux)) id 1QWpkS-0000H9-B3; Wed, 15 Jun 2011 13:03:08 +0000 Received: from localhost ([127.0.0.1] helo=canuck.infradead.org) by canuck.infradead.org with esmtp (Exim 4.76 #1 (Red Hat Linux)) id 1QWpkR-0000aP-RO; Wed, 15 Jun 2011 13:03:07 +0000 Received: from na3sys009aog110.obsmtp.com ([74.125.149.203]) by canuck.infradead.org with smtps (Exim 4.76 #1 (Red Hat Linux)) id 1QWpkA-0000Wu-Sn for linux-arm-kernel@lists.infradead.org; Wed, 15 Jun 2011 13:02:52 +0000 Received: from mail-fx0-f50.google.com ([209.85.161.50]) (using TLSv1) by na3sys009aob110.postini.com ([74.125.148.12]) with SMTP ID DSNKTfitePaBdejHFIOroI6q18ZYrnuMrNCj@postini.com; Wed, 15 Jun 2011 06:02:50 PDT Received: by mail-fx0-f50.google.com with SMTP id 16so411314fxm.9 for ; Wed, 15 Jun 2011 06:02:48 -0700 (PDT) Received: by 10.223.79.139 with SMTP id p11mr539041fak.118.1308142968196; Wed, 15 Jun 2011 06:02:48 -0700 (PDT) Received: from localhost (cs181221225.pp.htv.fi [82.181.221.225]) by mx.google.com with ESMTPS id e16sm208223fak.17.2011.06.15.06.02.45 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 15 Jun 2011 06:02:46 -0700 (PDT) From: Felipe Balbi To: Russell King Subject: [RESEND PATCH 1/2] arm: Kconfig: select correct HAVE_SPARSE_IRQ symbol Date: Wed, 15 Jun 2011 16:02:39 +0300 Message-Id: <1308142960-20767-2-git-send-email-balbi@ti.com> X-Mailer: git-send-email 1.7.6.rc1 In-Reply-To: <1308142960-20767-1-git-send-email-balbi@ti.com> References: <1308142960-20767-1-git-send-email-balbi@ti.com> Organization: Texas Instruments\n X-CRM114-Version: 20090807-BlameThorstenAndJenny ( TRE 0.7.6 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20110615_090251_269189_647A7DE6 X-CRM114-Status: GOOD ( 13.44 ) X-Spam-Score: -2.3 (--) X-Spam-Report: SpamAssassin version 3.3.1 on canuck.infradead.org summary: Content analysis details: (-2.3 points) pts rule name description ---- ---------------------- -------------------------------------------------- -2.3 RCVD_IN_DNSWL_MED RBL: Sender listed at http://www.dnswl.org/, medium trust [74.125.149.203 listed in list.dnswl.org] Cc: Andrew Morton , Linux OMAP Mailing List , Felipe Balbi , Linux ARM Kernel Mailing List X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: linux-arm-kernel-bounces@lists.infradead.org Errors-To: linux-arm-kernel-bounces+patchwork-linux-arm=patchwork.kernel.org@lists.infradead.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.6 (demeter1.kernel.org [140.211.167.41]); Wed, 15 Jun 2011 13:03:42 +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 9adc278..a061525 100644 --- a/arch/arm/Kconfig +++ b/arch/arm/Kconfig @@ -545,7 +545,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. @@ -617,7 +617,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.