Update of /cvsroot/linux-mips/linux/arch/mips/ddb5xxx/ddb5477
In directory usw-pr-cvs1:/tmp/cvs-serv25707/arch/mips/ddb5xxx/ddb5477
Modified Files:
irq.c
Log Message:
Synced with Ralf's 2.4.8 code.
Index: irq.c
===================================================================
RCS file: /cvsroot/linux-mips/linux/arch/mips/ddb5xxx/ddb5477/irq.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** irq.c 2001/08/25 02:19:27 1.4
--- irq.c 2001/08/25 06:24:45 1.5
***************
*** 1,3 ****
! /***********************************************************************
* Copyright 2001 MontaVista Software Inc.
* Author: Jun Sun, js...@mv... or js...@ju...
--- 1,3 ----
! /*
* Copyright 2001 MontaVista Software Inc.
* Author: Jun Sun, js...@mv... or js...@ju...
***************
*** 10,16 ****
* Free Software Foundation; either version 2 of the License, or (at your
* option) any later version.
- ***********************************************************************
*/
-
#include <linux/config.h>
#include <linux/init.h>
--- 10,14 ----
***************
*** 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();
- }
-
--- 162,163 ----
|