]> git.karo-electronics.de Git - linux-beck.git/commitdiff
blackfin/irq: Use irq_set_handler_locked()
authorThomas Gleixner <tglx@linutronix.de>
Mon, 13 Jul 2015 20:34:57 +0000 (20:34 +0000)
committerThomas Gleixner <tglx@linutronix.de>
Mon, 27 Jul 2015 11:36:37 +0000 (13:36 +0200)
Use irq_set_handler_locked() as it avoids a redundant lookup of the
irq descriptor.

Search and update was done with coccinelle.

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: Steven Miao <realmz6@gmail.com>
Cc: Jiang Liu <jiang.liu@linux.intel.com>
Cc: Julia Lawall <julia.lawall@lip6.fr>
Cc: adi-buildroot-devel@lists.sourceforge.net
Link: http://lkml.kernel.org/r/20150713125611.731615902@linutronix.de
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
arch/blackfin/mach-common/ints-priority.c

index 332a434b4669b49b2b573ee7d5ee0f6bde678b9d..2eaf83a1a9814e482d213e4cf8199868d6007be2 100644 (file)
@@ -686,12 +686,12 @@ void bfin_demux_mac_status_irq(unsigned int int_err_irq,
 }
 #endif
 
-static inline void bfin_set_irq_handler(unsigned irq, irq_flow_handler_t handle)
+static inline void bfin_set_irq_handler(struct irq_data *d, irq_flow_handler_t handle)
 {
 #ifdef CONFIG_IPIPE
        handle = handle_level_irq;
 #endif
-       __irq_set_handler_locked(irq, handle);
+       irq_set_handler_locked(d, handle);
 }
 
 #ifdef CONFIG_GPIO_ADI
@@ -803,9 +803,9 @@ static int bfin_gpio_irq_type(struct irq_data *d, unsigned int type)
        }
 
        if (type & (IRQ_TYPE_EDGE_RISING | IRQ_TYPE_EDGE_FALLING))
-               bfin_set_irq_handler(irq, handle_edge_irq);
+               bfin_set_irq_handler(d, handle_edge_irq);
        else
-               bfin_set_irq_handler(irq, handle_level_irq);
+               bfin_set_irq_handler(d, handle_level_irq);
 
        return 0;
 }