Update of /cvsroot/linux-mips/linux/arch/mips/kernel
In directory usw-pr-cvs1:/tmp/cvs-serv20802
Modified Files:
Makefile irq.c
Log Message:
Export probe_irq_mask.
Index: Makefile
===================================================================
RCS file: /cvsroot/linux-mips/linux/arch/mips/kernel/Makefile,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- Makefile 2001/09/26 23:19:53 1.7
+++ Makefile 2001/09/27 22:36:33 1.8
@@ -37,7 +37,7 @@
obj-$(CONFIG_SMP) += smp.o
# Old style irq support, going to die in 2.5.
-export-objs += old-irq.o
+export-objs += irq.o old-irq.o
obj-$(CONFIG_NEW_IRQ) += irq.o
obj-$(CONFIG_ROTTEN_IRQ) += old-irq.o
obj-$(CONFIG_I8259) += i8259.o
Index: irq.c
===================================================================
RCS file: /cvsroot/linux-mips/linux/arch/mips/kernel/irq.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- irq.c 2001/08/10 22:14:46 1.3
+++ irq.c 2001/09/27 22:36:33 1.4
@@ -705,3 +705,5 @@
irq_desc[i].handler = &no_irq_type;
}
}
+
+EXPORT_SYMBOL(probe_irq_mask);
|