diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2015-06-23 09:52:40 -0400 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2015-07-14 06:12:20 -0400 |
commit | 2456d869c45eeaefa7c5c96d30d1e884a12709e3 (patch) | |
tree | 1db54e7fe1dfaf6e4425d4ab7645b563bfcddc8f /drivers/gpio/gpio-pch.c | |
parent | 43ec2e4316047e9eecf7df86768708395888eb96 (diff) |
gpio/pch: 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:
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: Jiang Liu <jiang.liu@linux.intel.com>
Cc: Julia Lawall <julia.lawall@lip6.fr>
Cc: Linus Walleij <linus.walleij@linaro.org>
Cc: Alexandre Courbot <gnurou@gmail.com>
Cc: linux-gpio@vger.kernel.org
Diffstat (limited to 'drivers/gpio/gpio-pch.c')
-rw-r--r-- | drivers/gpio/gpio-pch.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpio/gpio-pch.c b/drivers/gpio/gpio-pch.c index 2d9a950ca2d4..34ed176df15a 100644 --- a/drivers/gpio/gpio-pch.c +++ b/drivers/gpio/gpio-pch.c | |||
@@ -281,9 +281,9 @@ static int pch_irq_type(struct irq_data *d, unsigned int type) | |||
281 | 281 | ||
282 | /* And the handler */ | 282 | /* And the handler */ |
283 | if (type & (IRQ_TYPE_LEVEL_LOW | IRQ_TYPE_LEVEL_HIGH)) | 283 | if (type & (IRQ_TYPE_LEVEL_LOW | IRQ_TYPE_LEVEL_HIGH)) |
284 | __irq_set_handler_locked(d->irq, handle_level_irq); | 284 | irq_set_handler_locked(d, handle_level_irq); |
285 | else if (type & (IRQ_TYPE_EDGE_FALLING | IRQ_TYPE_EDGE_RISING)) | 285 | else if (type & (IRQ_TYPE_EDGE_FALLING | IRQ_TYPE_EDGE_RISING)) |
286 | __irq_set_handler_locked(d->irq, handle_edge_irq); | 286 | irq_set_handler_locked(d, handle_edge_irq); |
287 | 287 | ||
288 | unlock: | 288 | unlock: |
289 | spin_unlock_irqrestore(&chip->spinlock, flags); | 289 | spin_unlock_irqrestore(&chip->spinlock, flags); |