Skip to content

Commit

Permalink
ARM: 8282/1: sa1100: use handle_domain_irq
Browse files Browse the repository at this point in the history
Use handle_domain_irq instead of handle_IRQ to automatically map
hardware irq number to virq.

Signed-off-by: Dmitry Eremin-Solenikov <[email protected]>
Tested-by: Linus Walleij <[email protected]>
Signed-off-by: Russell King <[email protected]>
  • Loading branch information
lumag authored and Russell King committed Jan 29, 2015
1 parent a0ea298 commit 364e386
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion arch/arm/mach-sa1100/irq.c
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,8 @@ sa1100_handle_irq(struct pt_regs *regs)
if (mask == 0)
break;

handle_IRQ(ffs(mask) - 1 + IRQ_GPIO0_SC, regs);
handle_domain_irq(sa1100_normal_irqdomain,
ffs(mask) - 1, regs);
} while (1);
}

Expand Down

0 comments on commit 364e386

Please sign in to comment.