Skip to content

Commit

Permalink
cris: Use irq handling wrapper
Browse files Browse the repository at this point in the history
Use the wrapper around __do_IRQ() so we can convert V10 and V32
seperately.

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: Mikael Starvik <starvik@axis.com>
  • Loading branch information
Thomas Gleixner committed Jan 21, 2011
1 parent 51f3f15 commit c84077a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arch/cris/kernel/irq.c
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,8 @@ asmlinkage void do_IRQ(int irq, struct pt_regs * regs)
printk("do_IRQ: stack overflow: %lX\n", sp);
show_stack(NULL, (unsigned long *)sp);
}
__do_IRQ(irq);
irq_exit();
generic_handle_irq(irq);
irq_exit();
set_irq_regs(old_regs);
}

Expand Down

0 comments on commit c84077a

Please sign in to comment.