mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-13 14:24:11 +08:00
irqchip/tb10x: 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>
This commit is contained in:
parent
3200a71207
commit
22890b0dbe
@ -173,8 +173,8 @@ static int __init of_tb10x_init_irq(struct device_node *ictl,
|
||||
for (i = 0; i < nrirqs; i++) {
|
||||
unsigned int irq = irq_of_parse_and_map(ictl, i);
|
||||
|
||||
irq_set_handler_data(irq, domain);
|
||||
irq_set_chained_handler(irq, tb10x_irq_cascade);
|
||||
irq_set_chained_handler_and_data(irq, tb10x_irq_cascade,
|
||||
domain);
|
||||
}
|
||||
|
||||
ab_irqctl_writereg(gc, AB_IRQCTL_INT_ENABLE, 0);
|
||||
|
Loading…
Reference in New Issue
Block a user