MIPS: bcm63xx: Use irq_set_handler_locked()
authorThomas Gleixner <[email protected]>
Mon, 13 Jul 2015 20:46:02 +0000 (20:46 +0000)
committerRalf Baechle <[email protected]>
Wed, 26 Aug 2015 13:23:29 +0000 (15:23 +0200)
Use irq_set_handler_locked() as it avoids a redundant lookup of the
irq descriptor.

Search and replacement was done with coccinelle.

Signed-off-by: Thomas Gleixner <[email protected]>
Cc: Jiang Liu <[email protected]>
Cc: Julia Lawall <[email protected]>
Cc: Ralf Baechle <[email protected]>
Cc: [email protected]
Cc: LKML <[email protected]>
Patchwork: https://patchwork.linux-mips.org/patch/10701/
Signed-off-by: Ralf Baechle <[email protected]>
arch/mips/bcm63xx/irq.c

index 02983b90826daa0738b73747f0dd0d8973648773..1a47ec2a09062b59bf76b1b4de9270435698b88e 100644 (file)
@@ -365,9 +365,9 @@ static int bcm63xx_external_irq_set_type(struct irq_data *d,
 
        irqd_set_trigger_type(d, flow_type);
        if (flow_type & (IRQ_TYPE_LEVEL_LOW | IRQ_TYPE_LEVEL_HIGH))
-               __irq_set_handler_locked(d->irq, handle_level_irq);
+               irq_set_handler_locked(d, handle_level_irq);
        else
-               __irq_set_handler_locked(d->irq, handle_edge_irq);
+               irq_set_handler_locked(d, handle_edge_irq);
 
        return IRQ_SET_MASK_OK_NOCOPY;
 }