[patch 06/20] powerpc/spider-pic: Consolidate chained IRQ handler install/remove
From: Thomas Gleixner <hidden>
Date: 2015-07-13 20:50:19
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 <redacted> Signed-off-by: Thomas Gleixner <redacted> Cc: Julia Lawall <redacted> Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org> Cc: Michael Ellerman <mpe@ellerman.id.au> Cc: linuxppc-dev@lists.ozlabs.org --- arch/powerpc/platforms/cell/spider-pic.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) Index: tip/arch/powerpc/platforms/cell/spider-pic.c ===================================================================
--- tip.orig/arch/powerpc/platforms/cell/spider-pic.c
+++ tip/arch/powerpc/platforms/cell/spider-pic.c@@ -317,8 +317,7 @@ static void __init spider_init_one(struc virq = spider_find_cascade_and_node(pic); if (virq == NO_IRQ) return; - irq_set_handler_data(virq, pic); - irq_set_chained_handler(virq, spider_irq_cascade); + irq_set_chained_handler_and_data(virq, spider_irq_cascade, pic); printk(KERN_INFO "spider_pic: node %d, addr: 0x%lx %s\n", pic->node_id, addr, of_node->full_name);