Tag: 3200a71207c7d4ec4e961c0ef7ac50361de30e9a

irqchip/sunxi-nmi: Consolidate chained IRQ handler install/remove

Author: Thomas Gleixner <tglx@linutronix.de> 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); ) …

Continue reading