projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d68cd06
)
gpio/timberdale: Consolidate chained IRQ handler install/remove
author
Thomas Gleixner
<
[email protected]
>
Sun, 21 Jun 2015 19:10:47 +0000
(21:10 +0200)
committer
Thomas Gleixner
<
[email protected]
>
Tue, 14 Jul 2015 10:12:19 +0000
(12:12 +0200)
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 <
[email protected]
>
Signed-off-by: Thomas Gleixner <
[email protected]
>
Cc: Julia Lawall <
[email protected]
>
Cc: Linus Walleij <
[email protected]
>
Cc: Alexandre Courbot <
[email protected]
>
Cc:
[email protected]
drivers/gpio/gpio-timberdale.c
patch
|
blob
|
history
diff --git
a/drivers/gpio/gpio-timberdale.c
b/drivers/gpio/gpio-timberdale.c
index e8f97e03c9bb6a61478a2c99f693f067c5b49ce7..fd1970ed15e61be4c5a3617c5d118929411e2376 100644
(file)
--- a/
drivers/gpio/gpio-timberdale.c
+++ b/
drivers/gpio/gpio-timberdale.c
@@
-299,8
+299,7
@@
static int timbgpio_probe(struct platform_device *pdev)
#endif
}
- irq_set_handler_data(irq, tgpio);
- irq_set_chained_handler(irq, timbgpio_irq);
+ irq_set_chained_handler_and_data(irq, timbgpio_irq, tgpio);
return 0;
}