Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753077AbbFDEQA (ORCPT ); Thu, 4 Jun 2015 00:16:00 -0400 Received: from mga01.intel.com ([192.55.52.88]:18733 "EHLO mga01.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752958AbbFDEPp (ORCPT ); Thu, 4 Jun 2015 00:15:45 -0400 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.13,549,1427785200"; d="scan'208";a="736801452" From: Jiang Liu To: Thomas Gleixner , Bjorn Helgaas , Benjamin Herrenschmidt , Ingo Molnar , "H. Peter Anvin" , Randy Dunlap , Yinghai Lu , Borislav Petkov , Steven Miao , Christoph Lameter , Rickard Strandqvist Cc: Jiang Liu , Konrad Rzeszutek Wilk , Tony Luck , x86@kernel.org, linux-kernel@vger.kernel.org, linux-pci@vger.kernel.org, linux-acpi@vger.kernel.org, adi-buildroot-devel@lists.sourceforge.net Subject: [RFT v2 22/48] blackfin, irq: Prepare for killing the first parameter 'irq' of irq_flow_handler_t Date: Thu, 4 Jun 2015 12:13:32 +0800 Message-Id: <1433391238-19471-23-git-send-email-jiang.liu@linux.intel.com> X-Mailer: git-send-email 1.7.10.4 In-Reply-To: <1433391238-19471-1-git-send-email-jiang.liu@linux.intel.com> References: <1433391238-19471-1-git-send-email-jiang.liu@linux.intel.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1519 Lines: 46 Change irq flow handler to prepare for killing the first parameter 'irq' of irq_flow_handler_t. Seems ipipe.c is never used at all, and it may fail to compile if it's used. Signed-off-by: Jiang Liu --- arch/blackfin/kernel/ipipe.c | 2 +- arch/blackfin/mach-common/ints-priority.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/blackfin/kernel/ipipe.c b/arch/blackfin/kernel/ipipe.c index f657b38163e3..6007a1375c5b 100644 --- a/arch/blackfin/kernel/ipipe.c +++ b/arch/blackfin/kernel/ipipe.c @@ -56,7 +56,7 @@ EXPORT_SYMBOL(__ipipe_irq_lvmask); static void __ipipe_ack_irq(unsigned irq, struct irq_desc *desc) { - desc->ipipe_ack(irq, desc); + desc->ipipe_ack(irq_desc_get_irq(desc), desc); } /* diff --git a/arch/blackfin/mach-common/ints-priority.c b/arch/blackfin/mach-common/ints-priority.c index 332a434b4669..4e3155e5aa20 100644 --- a/arch/blackfin/mach-common/ints-priority.c +++ b/arch/blackfin/mach-common/ints-priority.c @@ -830,7 +830,7 @@ void bfin_demux_gpio_irq(unsigned int inta_irq, { unsigned int irq; - switch (inta_irq) { + switch (irq_desc_get_irq(desc)) { #if defined(BF537_FAMILY) case IRQ_PF_INTA_PG_INTA: bfin_demux_gpio_block(IRQ_PF0); -- 1.7.10.4 -- 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/