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: Benjamin Herrenschmidt <[email protected]>
Cc: Michael Ellerman <[email protected]>
Cc: [email protected]
---
 arch/powerpc/platforms/embedded6xx/hlwd-pic.c |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Index: tip/arch/powerpc/platforms/embedded6xx/hlwd-pic.c
===================================================================
--- tip.orig/arch/powerpc/platforms/embedded6xx/hlwd-pic.c
+++ tip/arch/powerpc/platforms/embedded6xx/hlwd-pic.c
@@ -212,9 +212,9 @@ void hlwd_pic_probe(void)
                        host = hlwd_pic_init(np);
                        BUG_ON(!host);
                        cascade_virq = irq_of_parse_and_map(np, 0);
-                       irq_set_handler_data(cascade_virq, host);
-                       irq_set_chained_handler(cascade_virq,
-                                               hlwd_pic_irq_cascade);
+                       irq_set_chained_handler_and_data(cascade_virq,
+                                                        hlwd_pic_irq_cascade,
+                                                        host);
                        hlwd_irq_host = host;
                        break;
                }


_______________________________________________
Linuxppc-dev mailing list
[email protected]
https://lists.ozlabs.org/listinfo/linuxppc-dev

Reply via email to