diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2011-03-22 12:11:09 -0400 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2011-03-29 08:47:52 -0400 |
commit | 1475b85d08b51b5ee2b7b426247d3ef3f531eafe (patch) | |
tree | e0f092b3fda6515735c04a2cecfc3a375df601c6 /arch/arm/mach-tegra | |
parent | b0f18edaf6ee4e6fac89cae63a90bd38ad2a3418 (diff) |
arm: Use genirq lockdep helper to set lock class
Remove the open coded access to irq_desc which will fail on sparse irq
and use the proper wrappers.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'arch/arm/mach-tegra')
-rw-r--r-- | arch/arm/mach-tegra/gpio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-tegra/gpio.c b/arch/arm/mach-tegra/gpio.c index 094e61a59b1f..8ab2131f41d4 100644 --- a/arch/arm/mach-tegra/gpio.c +++ b/arch/arm/mach-tegra/gpio.c | |||
@@ -340,7 +340,7 @@ static int __init tegra_gpio_init(void) | |||
340 | for (i = INT_GPIO_BASE; i < (INT_GPIO_BASE + TEGRA_NR_GPIOS); i++) { | 340 | for (i = INT_GPIO_BASE; i < (INT_GPIO_BASE + TEGRA_NR_GPIOS); i++) { |
341 | bank = &tegra_gpio_banks[GPIO_BANK(irq_to_gpio(i))]; | 341 | bank = &tegra_gpio_banks[GPIO_BANK(irq_to_gpio(i))]; |
342 | 342 | ||
343 | lockdep_set_class(&irq_desc[i].lock, &gpio_lock_class); | 343 | irq_set_lockdep_class(i, &gpio_lock_class); |
344 | set_irq_chip_data(i, bank); | 344 | set_irq_chip_data(i, bank); |
345 | set_irq_chip(i, &tegra_gpio_irq_chip); | 345 | set_irq_chip(i, &tegra_gpio_irq_chip); |
346 | set_irq_handler(i, handle_simple_irq); | 346 | set_irq_handler(i, handle_simple_irq); |