aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTarun Kanti DebBarma <[email protected]>2012-04-27 19:43:35 +0530
committerKevin Hilman <[email protected]>2012-05-11 17:08:40 -0700
commitb1a8e3d2d198319e40318563ff80f95605da5a0e (patch)
tree2eeac762a9f980b9ae3f0221909e5cb5a3c9d7ad
parent499fa2871d95049c12362c27075672e8af988eb6 (diff)
gpio/omap: remove retrigger variable in gpio_irq_handler
commit 672e302e3c (ARM: OMAP: use edge/level handlers from generic IRQ framework) removed retrigger support in favor of using generic IRQ framework. This patch cleans up some unused remnants of that removal. Cc: Kevin Hilman <[email protected]> Cc: Tony Lindgren <[email protected]> Cc: Santosh Shilimkar <[email protected]> Cc: Cousson, Benoit <[email protected]> Cc: Grant Likely <[email protected]> Signed-off-by: Tarun Kanti DebBarma <[email protected]> Reviewed-by: Santosh Shilimkar <[email protected]> Acked-by: Felipe Balbi <[email protected]> Tested-by: Govindraj.R <[email protected]> Signed-off-by: Kevin Hilman <[email protected]>
-rw-r--r--drivers/gpio/gpio-omap.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/gpio/gpio-omap.c b/drivers/gpio/gpio-omap.c
index 8b6f1b9510eb..96d2aef409b9 100644
--- a/drivers/gpio/gpio-omap.c
+++ b/drivers/gpio/gpio-omap.c
@@ -636,7 +636,6 @@ static void gpio_irq_handler(unsigned int irq, struct irq_desc *desc)
u32 isr;
unsigned int gpio_irq, gpio_index;
struct gpio_bank *bank;
- u32 retrigger = 0;
int unmasked = 0;
struct irq_chip *chip = irq_desc_get_chip(desc);
@@ -673,8 +672,6 @@ static void gpio_irq_handler(unsigned int irq, struct irq_desc *desc)
chained_irq_exit(chip, desc);
}
- isr |= retrigger;
- retrigger = 0;
if (!isr)
break;