Update of /cvsroot/linux-mips/linux/arch/mips/korva
In directory usw-pr-cvs1:/tmp/cvs-serv30877
Modified Files:
irq.c
Log Message:
Due to overwhelming demand, I revert my reversion of my accidental commit. :-)
Index: irq.c
===================================================================
RCS file: /cvsroot/linux-mips/linux/arch/mips/korva/irq.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** irq.c 2001/09/18 21:36:26 1.3
--- irq.c 2001/09/18 23:20:17 1.4
***************
*** 33,37 ****
extern int setup_irq(unsigned int irq, struct irqaction *irqaction);
! static struct irqaction irq2 = { no_action, 0, 0, "cascade", NULL, NULL };
void __init init_IRQ(void)
--- 33,37 ----
extern int setup_irq(unsigned int irq, struct irqaction *irqaction);
! static struct irqaction irq_cascade = { no_action, 0, 0, "cascade", NULL, NULL };
void __init init_IRQ(void)
***************
*** 47,51 ****
/* setup cascade interrupt 6 */
! setup_irq(6, &irq2);
#ifdef CONFIG_REMOTE_DEBUG
--- 47,51 ----
/* setup cascade interrupt 6 */
! setup_irq(6, &irq_cascade);
#ifdef CONFIG_REMOTE_DEBUG
|