From: James S. <jsi...@us...> - 2002-02-14 20:45:31
|
Update of /cvsroot/linux-mips/linux/arch/mips/dec In directory usw-pr-cvs1:/tmp/cvs-serv17741 Modified Files: irq.c Log Message: Change type of irq_err_count to atomic_t. Index: irq.c =================================================================== RCS file: /cvsroot/linux-mips/linux/arch/mips/dec/irq.c,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- irq.c 2 Dec 2001 19:05:29 -0000 1.5 +++ irq.c 14 Feb 2002 20:45:26 -0000 1.6 @@ -19,7 +19,6 @@ #include <asm/bitops.h> #include <asm/bootinfo.h> #include <asm/io.h> -#include <asm/irq.h> #include <asm/mipsregs.h> #include <asm/system.h> @@ -34,7 +33,7 @@ extern asmlinkage void decstation_handle_int(void); -volatile unsigned long irq_err_count; +atomic_t irq_err_count; static inline void mask_irq(unsigned int irq_nr) { @@ -266,6 +265,11 @@ { /* TODO */ return 0; +} + +void init_irq_proc(void) +{ + /* Nothing, for now. */ } void __init init_IRQ(void) |