Update of /cvsroot/linux-mips/linux/arch/mips/ddb5xxx/ddb5477
In directory usw-pr-cvs1:/tmp/cvs-serv32754/arch/mips/ddb5xxx/ddb5477
Modified Files:
irq.c
Log Message:
Move to_tm() to common time.c file. Some related ddb5477 changes.
Index: irq.c
===================================================================
RCS file: /cvsroot/linux-mips/linux/arch/mips/ddb5xxx/ddb5477/irq.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** irq.c 2001/08/03 21:26:26 1.2
--- irq.c 2001/08/23 04:20:15 1.3
***************
*** 164,184 ****
}
}
-
- void (*irq_setup)(void);
-
- void __init init_IRQ(void)
- {
-
- #ifdef CONFIG_REMOTE_DEBUG
- extern void breakpoint(void);
- extern void set_debug_traps(void);
-
- printk("Wait for gdb client connection ...\n");
- set_debug_traps();
- breakpoint();
- #endif
-
- /* invoke board-specific irq setup */
- irq_setup();
- }
-
--- 164,165 ----
|