diff options
author | Thomas Gleixner | 2015-06-21 21:11:00 +0200 |
---|---|---|
committer | Thomas Gleixner | 2015-07-11 23:14:26 +0200 |
commit | fcd3c5bee16a2c3c9cd6c4cb8e3e093d458d9f86 (patch) | |
tree | 95387e0703348cf2178453b508eca8bc7671ab2b /arch/arm/tools | |
parent | 22890b0dbe233fa460d25762ab6a2f5c90f84d9c (diff) |
irqchip/versatile: 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: Thomas Gleixner <tglx@linutronix.de>
Cc: Jason Cooper <jason@lakedaemon.net>
Diffstat (limited to 'arch/arm/tools')
0 files changed, 0 insertions, 0 deletions