From: Paul M. <le...@us...> - 2001-08-25 02:19:30
|
Update of /cvsroot/linux-mips/linux/arch/mips/ddb5xxx/ddb5477 In directory usw-pr-cvs1:/tmp/cvs-serv13548/arch/mips/ddb5xxx/ddb5477 Modified Files: irq.c Log Message: Sync to 2.4.7 Index: irq.c =================================================================== RCS file: /cvsroot/linux-mips/linux/arch/mips/ddb5xxx/ddb5477/irq.c,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** irq.c 2001/08/23 04:20:15 1.3 --- irq.c 2001/08/25 02:19:27 1.4 *************** *** 164,165 **** --- 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(); + } + |