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:
8a52211
)
gpio/tz1090: Consolidate chained IRQ handler install/remove
author
Thomas Gleixner
<
[email protected]
>
Sun, 21 Jun 2015 19:10:48 +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-tz1090.c
patch
|
blob
|
history
diff --git
a/drivers/gpio/gpio-tz1090.c
b/drivers/gpio/gpio-tz1090.c
index 445660adc898918d8c32cb9b09816762157dfc2c..bbac92ae4c328ab96eef76785e4189e7b3de08a5 100644
(file)
--- a/
drivers/gpio/gpio-tz1090.c
+++ b/
drivers/gpio/gpio-tz1090.c
@@
-510,8
+510,8
@@
static int tz1090_gpio_bank_probe(struct tz1090_gpio_bank_info *info)
gc->chip_types[1].chip.flags = IRQCHIP_MASK_ON_SUSPEND;
/* Setup chained handler for this GPIO bank */
- irq_set_
handler_data(bank->irq, bank);
-
irq_set_chained_handler(bank->irq, tz1090_gpio_irq_handler
);
+ irq_set_
chained_handler_and_data(bank->irq, tz1090_gpio_irq_handler,
+
bank
);
return 0;
}