Skip to content

Commit

Permalink
avr32: Fix missing irq namespace conversion
Browse files Browse the repository at this point in the history
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
  • Loading branch information
Thomas Gleixner committed Mar 30, 2011
1 parent eead4d5 commit dd8ea6a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/avr32/mach-at32ap/pio.c
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ static struct irq_chip gpio_irqchip = {

static void gpio_irq_handler(unsigned irq, struct irq_desc *desc)
{
struct pio_device *pio = get_irq_desc_chip_data(desc);
struct pio_device *pio = irq_desc_get_chip_data(desc);
unsigned gpio_irq;

gpio_irq = (unsigned) irq_get_handler_data(irq);
Expand Down

0 comments on commit dd8ea6a

Please sign in to comment.