Skip to content

Commit

Permalink
m68knommu: switch to using generic_handle_irq()
Browse files Browse the repository at this point in the history
Switch to using generic_handle_irq() instead of the deprecated __do_IRQ().

Signed-off-by: Greg Ungerer <gerg@uclinux.org>
  • Loading branch information
Greg Ungerer committed Mar 24, 2009
1 parent da4f4a0 commit 454dc5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/m68knommu/kernel/irq.c
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ asmlinkage void do_IRQ(int irq, struct pt_regs *regs)
struct pt_regs *oldregs = set_irq_regs(regs);

irq_enter();
__do_IRQ(irq);
generic_handle_irq(irq);
irq_exit();

set_irq_regs(oldregs);
Expand Down

0 comments on commit 454dc5f

Please sign in to comment.