From c6e1b9464f3fb2f1eb4750db635afef9fd59336a Mon Sep 17 00:00:00 2001 From: Ralf Baechle Date: Sat, 18 Nov 2000 01:57:24 +0000 Subject: Initialization hooks for Atlas / Malta. Start of merging a Atlas / Malta patchset. Credits for these patches should go to Carsten Langaard of MIPS. --- arch/mips/kernel/setup.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'arch/mips/kernel/setup.c') diff --git a/arch/mips/kernel/setup.c b/arch/mips/kernel/setup.c index 4e8c64fb6..b8b0a2e3c 100644 --- a/arch/mips/kernel/setup.c +++ b/arch/mips/kernel/setup.c @@ -266,6 +266,8 @@ void __init setup_arch(char **cmdline_p) void ddb_setup(void); void orion_setup(void); void ev96100_setup(void); + void atlas_setup(void); + void malta_setup(void); /* Save defaults for configuration-dependent routines. */ irq_setup = default_irq_setup; @@ -301,11 +303,21 @@ void __init setup_arch(char **cmdline_p) decstation_setup(); break; #endif +#ifdef CONFIG_MIPS_ATLAS + case MACH_GROUP_UNKNOWN: + atlas_setup(); + break; +#endif #ifdef CONFIG_MIPS_JAZZ case MACH_GROUP_JAZZ: jazz_setup(); break; #endif +#ifdef CONFIG_MIPS_MALTA + case MACH_GROUP_UNKNOWN: + malta_setup(); + break; +#endif #ifdef CONFIG_SGI_IP22 /* As of now this is only IP22. */ case MACH_GROUP_SGI: -- cgit v1.2.3