Beispiel #1
0
/*
 * handle_IRQ handles all hardware IRQ's.  Decoded IRQs should
 * not come via this function.  Instead, they should provide their
 * own 'handler'.  Used by platform code implementing C-based 1st
 * level decoding.
 */
void handle_IRQ(unsigned int irq, struct pt_regs *regs)
{
    __handle_domain_irq(NULL, irq, false, regs);
}
Beispiel #2
0
asmlinkage void c6x_do_IRQ(unsigned int prio, struct pt_regs *regs)
{
	__handle_domain_irq(core_domain, prio, true, regs);
}