summaryrefslogtreecommitdiffstats
path: root/arch/mips/kernel/irq.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/mips/kernel/irq.c')
-rw-r--r--arch/mips/kernel/irq.c15
1 files changed, 9 insertions, 6 deletions
diff --git a/arch/mips/kernel/irq.c b/arch/mips/kernel/irq.c
index 9dcca6184..c2c018045 100644
--- a/arch/mips/kernel/irq.c
+++ b/arch/mips/kernel/irq.c
@@ -1,10 +1,13 @@
-/*
+/* $Id: irq.c,v 1.10 1998/05/07 02:57:17 ralf Exp $
+ *
+ * This file is subject to the terms and conditions of the GNU General Public
+ * License. See the file "COPYING" in the main directory of this archive
+ * for more details.
+ *
* Code to handle x86 style IRQs plus some generic interrupt stuff.
*
* Copyright (C) 1992 Linus Torvalds
- * Copyright (C) 1994, 1995, 1996, 1997 Ralf Baechle
- *
- * $Id: irq.c,v 1.9 1998/03/22 23:27:12 ralf Exp $
+ * Copyright (C) 1994, 1995, 1996, 1997, 1998 Ralf Baechle
*/
#include <linux/errno.h>
#include <linux/init.h>
@@ -312,13 +315,13 @@ int probe_irq_off (unsigned long irqs)
int (*irq_cannonicalize)(int irq);
-static int 8259a_irq_cannonicalize(int irq)
+static int i8259a_irq_cannonicalize(int irq)
{
return ((irq == 2) ? 9 : irq);
}
__initfunc(void init_IRQ(void))
{
- irq_cannonicalize = 8259a_irq_cannonicalize;
+ irq_cannonicalize = i8259a_irq_cannonicalize;
irq_setup();
}