diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2015-06-21 22:10:55 +0300 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2015-07-12 00:14:26 +0300 |
commit | 832b404ea0f48a57f1099327cd3137e9a6a51f88 (patch) | |
tree | 51f1530185e9bc051f43e7d02b1bf12af55eedd2 /drivers/irqchip/irq-renesas-h8s.c | |
parent | bc4d2c074ac1b55a95a2011bffe1c5ebb590e886 (diff) | |
download | linux-832b404ea0f48a57f1099327cd3137e9a6a51f88.tar.xz |
irqchip/metag: Consolidate chained IRQ handler install/remove
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:
@@
expression E1, E2, E3;
@@
(
-if (irq_set_handler_data(E1, E2) != 0)
- BUG();
|
-irq_set_handler_data(E1, E2);
)
-irq_set_chained_handler(E1, E3);
+irq_set_chained_handler_and_data(E1, E3, E2);
@@
expression E1, E2, E3;
@@
(
-if (irq_set_handler_data(E1, E2) != 0)
- BUG();
...
|
-irq_set_handler_data(E1, E2);
...
)
-irq_set_chained_handler(E1, E3);
+irq_set_chained_handler_and_data(E1, E3, E2);
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: James Hogan <james.hogan@imgtec.com>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Jason Cooper <jason@lakedaemon.net>
Cc: linux-metag@vger.kernel.org
Diffstat (limited to 'drivers/irqchip/irq-renesas-h8s.c')
0 files changed, 0 insertions, 0 deletions