diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2015-06-23 09:52:39 -0400 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2015-07-14 06:12:20 -0400 |
commit | 43ec2e4316047e9eecf7df86768708395888eb96 (patch) | |
tree | 1f8c8934f5968b657ff1f5138aaa454ccc6148a7 | |
parent | b11b7af97883da01082e318abac51cec7162a347 (diff) |
gpio/omap: 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: Kevin Hilman <khilman@deeprootsystems.com>
Cc: Linus Walleij <linus.walleij@linaro.org>
Cc: Alexandre Courbot <gnurou@gmail.com>
Cc: linux-gpio@vger.kernel.org
-rw-r--r-- | drivers/gpio/gpio-omap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpio/gpio-omap.c b/drivers/gpio/gpio-omap.c index b0c57d505be7..1a7c2ded9d6f 100644 --- a/drivers/gpio/gpio-omap.c +++ b/drivers/gpio/gpio-omap.c | |||
@@ -511,9 +511,9 @@ static int omap_gpio_irq_type(struct irq_data *d, unsigned type) | |||
511 | spin_unlock_irqrestore(&bank->lock, flags); | 511 | spin_unlock_irqrestore(&bank->lock, flags); |
512 | 512 | ||
513 | if (type & (IRQ_TYPE_LEVEL_LOW | IRQ_TYPE_LEVEL_HIGH)) | 513 | if (type & (IRQ_TYPE_LEVEL_LOW | IRQ_TYPE_LEVEL_HIGH)) |
514 | __irq_set_handler_locked(d->irq, handle_level_irq); | 514 | irq_set_handler_locked(d, handle_level_irq); |
515 | else if (type & (IRQ_TYPE_EDGE_FALLING | IRQ_TYPE_EDGE_RISING)) | 515 | else if (type & (IRQ_TYPE_EDGE_FALLING | IRQ_TYPE_EDGE_RISING)) |
516 | __irq_set_handler_locked(d->irq, handle_edge_irq); | 516 | irq_set_handler_locked(d, handle_edge_irq); |
517 | 517 | ||
518 | return 0; | 518 | return 0; |
519 | 519 | ||