aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGrant Likely <[email protected]>2011-01-15 22:41:27 -0700
committerColin Cross <[email protected]>2011-01-26 21:28:06 -0800
commit867996cb4fc51aeccb2148f30356a00352e0f22f (patch)
tree237461003564991b3300c231bacf31ce1b2239ff
parent1bae4ce27c9c90344f23c65ea6966c50ffeae2f5 (diff)
arm/tegra: Fix tegra irq_data conversion
Commit 37337a8d5e68d6e19075dbdb3acf4f1011dae972, "ARM: tegra: irq_data conversion." missed changing one reference to 'irq' in the function tegra_gpio_irq_set_type(). This patch fixes the build error. Signed-off-by: Grant Likely <[email protected]> Acked-by: Lennert Buytenhek <[email protected]> Acked-by: Olof Johansson <[email protected]> Signed-off-by: Colin Cross <[email protected]>
-rw-r--r--arch/arm/mach-tegra/gpio.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/mach-tegra/gpio.c b/arch/arm/mach-tegra/gpio.c
index bd066206e110..ad8048801513 100644
--- a/arch/arm/mach-tegra/gpio.c
+++ b/arch/arm/mach-tegra/gpio.c
@@ -207,9 +207,9 @@ static int tegra_gpio_irq_set_type(struct irq_data *d, unsigned int type)
spin_unlock_irqrestore(&bank->lvl_lock[port], flags);
if (type & (IRQ_TYPE_LEVEL_LOW | IRQ_TYPE_LEVEL_HIGH))
- __set_irq_handler_unlocked(irq, handle_level_irq);
+ __set_irq_handler_unlocked(d->irq, handle_level_irq);
else if (type & (IRQ_TYPE_EDGE_FALLING | IRQ_TYPE_EDGE_RISING))
- __set_irq_handler_unlocked(irq, handle_edge_irq);
+ __set_irq_handler_unlocked(d->irq, handle_edge_irq);
return 0;
}