public inbox for linux-arm-kernel@lists.infradead.org 
 help / color / mirror / Atom feed
From: tglx@linutronix•de (Thomas Gleixner)
To: linux-arm-kernel@lists•infradead.org
Subject: [patch 01/11] ARM/orion: Consolidate chained IRQ handler install/remove
Date: Mon, 13 Jul 2015 20:29:00 -0000	[thread overview]
Message-ID: <20150713090936.019766165@linutronix.de> (raw)
In-Reply-To: 20150713090726.316699641@linutronix.de

Chained irq handlers usually set up handler data as well. We now have
a function to set both under irq_desc->lock. Replace the two calls
with one.

Search and conversion was done with coccinelle.

Reported-by: Russell King <rmk+kernel@arm•linux.org.uk>
Signed-off-by: Thomas Gleixner <tglx@linutronix•de>
Cc: Julia Lawall <Julia.Lawall@lip6•fr>
Cc: Russell King <rmk+kernel@arm•linux.org.uk>
Cc: linux-arm-kernel at lists.infradead.org
---
 arch/arm/plat-orion/gpio.c |    5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

Index: tip/arch/arm/plat-orion/gpio.c
===================================================================
--- tip.orig/arch/arm/plat-orion/gpio.c
+++ tip/arch/arm/plat-orion/gpio.c
@@ -582,8 +582,9 @@ void __init orion_gpio_init(struct devic
 
 	for (i = 0; i < 4; i++) {
 		if (irqs[i]) {
-			irq_set_handler_data(irqs[i], ochip);
-			irq_set_chained_handler(irqs[i], gpio_irq_handler);
+			irq_set_chained_handler_and_data(irqs[i],
+							 gpio_irq_handler,
+							 ochip);
 		}
 	}
 

  reply	other threads:[~2015-07-13 20:29 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-07-13 20:28 [patch 00/11] ARM: Interrupt cleanups and API change preparation Thomas Gleixner
2015-07-13 20:29 ` Thomas Gleixner [this message]
2015-07-13 20:29 ` [patch 02/11] ARM/locomo: Consolidate chained IRQ handler install/remove Thomas Gleixner
2015-07-13 20:29 ` [patch 03/11] ARM/irq: Use access helper irq_data_get_affinity_mask() Thomas Gleixner
2015-07-13 20:29 ` [patch 04/11] ARM/LPC32xx: Use irq_set_handler_locked() Thomas Gleixner
2015-07-13 20:29 ` [patch 05/11] ARM, irq: Use irq_desc_get_xxx() to avoid redundant lookup of irq_desc Thomas Gleixner
2015-07-13 20:29 ` [patch 06/11] ARM/locomo: Prepare locomo_handler for irq argument removal Thomas Gleixner
2015-07-13 20:29 ` [patch 07/11] ARM/sa1111: Prepare sa1111_irq_handler " Thomas Gleixner
2015-07-13 20:29 ` [patch 08/11] ARM/dove: Prepare pmu_irq_handler " Thomas Gleixner
2015-07-13 20:29 ` [patch 09/11] ARM/pxa: Prepare *_irq_handler " Thomas Gleixner
2015-07-13 20:29 ` [patch 10/11] ARM/pxa: Prepare balloon3_irq_handler " Thomas Gleixner
2015-07-13 20:29 ` [patch 11/11] ARM/orion/gpio: Prepare gpio_irq_handler " Thomas Gleixner
2015-08-05 15:26 ` [patch 00/11] ARM: Interrupt cleanups and API change preparation Olof Johansson

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20150713090936.019766165@linutronix.de \
    --to=tglx@linutronix$(echo .)de \
    --cc=linux-arm-kernel@lists$(echo .)infradead.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox