summaryrefslogtreecommitdiffstats
path: root/arch/mips/kernel/setup.c
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>2000-01-26 00:07:44 +0000
committerRalf Baechle <ralf@linux-mips.org>2000-01-26 00:07:44 +0000
commit38f0dc890f23f8de14abe63f60a9f9bf3be40271 (patch)
tree99c5b1e021cc51f059d55c7efa4b74f3f4d8a80d /arch/mips/kernel/setup.c
parent07ebee0bea931f0d373e40205c932cae6b00a86d (diff)
Support for the NEC DDB Vrc-5074 evaluation board. Patches by
Geert Uytterhoeven (geert@linux-m68k.org).
Diffstat (limited to 'arch/mips/kernel/setup.c')
-rw-r--r--arch/mips/kernel/setup.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/arch/mips/kernel/setup.c b/arch/mips/kernel/setup.c
index 9f4b5164a..c1c556e1c 100644
--- a/arch/mips/kernel/setup.c
+++ b/arch/mips/kernel/setup.c
@@ -1,4 +1,4 @@
-/* $Id: setup.c,v 1.19 1999/09/28 22:25:47 ralf Exp $
+/* $Id: setup.c,v 1.20 1999/10/09 00:00:58 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
@@ -146,6 +146,7 @@ void __init setup_arch(char **cmdline_p,
void jazz_setup(void);
void sni_rm200_pci_setup(void);
void sgi_setup(void);
+ void ddb_setup(void);
/* Save defaults for configuration-dependent routines. */
irq_setup = default_irq_setup;
@@ -194,6 +195,11 @@ void __init setup_arch(char **cmdline_p,
sni_rm200_pci_setup();
break;
#endif
+#ifdef CONFIG_DDB5074
+ case MACH_GROUP_NEC_DDB:
+ ddb_setup();
+ break;
+#endif
default:
panic("Unsupported architecture");
}