Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c84077ac authored by Thomas Gleixner's avatar Thomas Gleixner
Browse files

cris: Use irq handling wrapper



Use the wrapper around __do_IRQ() so we can convert V10 and V32
seperately.

Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
Cc: Mikael Starvik <starvik@axis.com>
parent 51f3f159
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -93,7 +93,7 @@ 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);
	generic_handle_irq(irq);
	irq_exit();
	set_irq_regs(old_regs);
}