Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752041AbbG0GN6 (ORCPT ); Mon, 27 Jul 2015 02:13:58 -0400 Received: from terminus.zytor.com ([198.137.202.10]:58465 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751342AbbG0GNz (ORCPT ); Mon, 27 Jul 2015 02:13:55 -0400 Date: Sun, 26 Jul 2015 23:13:05 -0700 From: tip-bot for Thomas Gleixner Message-ID: Cc: mingo@kernel.org, tglx@linutronix.de, jiang.liu@linux.intel.com, hpa@zytor.com, hskinnemoen@gmail.com, julia.lawall@lip6.fr, egtvedt@samfundet.no, linux-kernel@vger.kernel.org Reply-To: jiang.liu@linux.intel.com, mingo@kernel.org, tglx@linutronix.de, hpa@zytor.com, hskinnemoen@gmail.com, julia.lawall@lip6.fr, linux-kernel@vger.kernel.org, egtvedt@samfundet.no In-Reply-To: <20150713100606.448031045@linutronix.de> References: <20150713100606.448031045@linutronix.de> To: linux-tip-commits@vger.kernel.org Subject: [tip:irq/core] avr32/at32ap: Use irq_set_handler_locked() Git-Commit-ID: 4f31dd63e050b777d3f3139197c4b3860aa89301 X-Mailer: tip-git-log-daemon Robot-ID: Robot-Unsubscribe: Contact to get blacklisted from these emails MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset=UTF-8 Content-Disposition: inline Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1821 Lines: 46 Commit-ID: 4f31dd63e050b777d3f3139197c4b3860aa89301 Gitweb: http://git.kernel.org/tip/4f31dd63e050b777d3f3139197c4b3860aa89301 Author: Thomas Gleixner AuthorDate: Mon, 13 Jul 2015 20:31:10 +0000 Committer: Thomas Gleixner CommitDate: Sun, 26 Jul 2015 11:47:25 +0200 avr32/at32ap: Use irq_set_handler_locked() Use irq_set_handler_locked() as it avoids a redundant lookup of the irq descriptor. Search and replacement was done with coccinelle. Signed-off-by: Thomas Gleixner Acked-by: Hans-Christian Egtvedt Cc: Haavard Skinnemoen Cc: Jiang Liu Cc: Julia Lawall Link: http://lkml.kernel.org/r/20150713100606.448031045@linutronix.de Signed-off-by: Thomas Gleixner --- arch/avr32/mach-at32ap/extint.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/avr32/mach-at32ap/extint.c b/arch/avr32/mach-at32ap/extint.c index 2d48b6a..d51ff8f 100644 --- a/arch/avr32/mach-at32ap/extint.c +++ b/arch/avr32/mach-at32ap/extint.c @@ -128,9 +128,9 @@ static int eic_set_irq_type(struct irq_data *d, unsigned int flow_type) irqd_set_trigger_type(d, flow_type); if (flow_type & (IRQ_TYPE_LEVEL_LOW | IRQ_TYPE_LEVEL_HIGH)) - __irq_set_handler_locked(irq, handle_level_irq); + irq_set_handler_locked(d, handle_level_irq); else - __irq_set_handler_locked(irq, handle_edge_irq); + irq_set_handler_locked(d, handle_edge_irq); return IRQ_SET_MASK_OK_NOCOPY; } -- 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/