]> git.kernelconcepts.de Git - karo-tx-linux.git/commit
powerpc/mpc8xx: Use irq_set_handler_locked()
authorThomas Gleixner <tglx@linutronix.de>
Tue, 23 Jun 2015 13:52:36 +0000 (15:52 +0200)
committerThomas Gleixner <tglx@linutronix.de>
Wed, 16 Sep 2015 13:43:11 +0000 (15:43 +0200)
commit9ca86b204b3c874e6ada28309f607e3aa74d60a9
treec1321a2c9718d99fe8e397dc2f21df7e9ec1f43d
parent9758a7b0e5fdd5a08bcc73540bb3b98d59295a6d
powerpc/mpc8xx: Use irq_set_handler_locked()

Use irq_set_handler_locked() as it avoids a redundant lookup of the
irq descriptor.

Search and replacement was done with coccinelle:

@@
struct irq_data *d;
expression E1;
@@

-__irq_set_handler_locked(d->irq, E1);
+irq_set_handler_locked(d, E1);

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: Jiang Liu <jiang.liu@linux.intel.com>
Cc: Julia Lawall <julia.lawall@lip6.fr>
Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Michael Ellerman <mpe@ellerman.id.au>
Cc: linuxppc-dev@lists.ozlabs.org
arch/powerpc/sysdev/mpc8xx_pic.c