From: James S. <jsi...@us...> - 2001-09-10 16:41:34
|
Update of /cvsroot/linux-mips/linux/arch/mips/kernel In directory usw-pr-cvs1:/tmp/cvs-serv19841 Modified Files: setup.c Log Message: Already had fix for compilation for non-CONFIG_CPU_MIPS32. Just nice code aligment cleanup. Index: setup.c =================================================================== RCS file: /cvsroot/linux-mips/linux/arch/mips/kernel/setup.c,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** setup.c 2001/09/06 17:16:51 1.14 --- setup.c 2001/09/10 16:41:31 1.15 *************** *** 382,386 **** } break; ! #endif case PRID_COMP_SIBYTE: switch (mips_cpu.processor_id & 0xff00) { --- 382,386 ---- } break; ! #endif /* CONFIG_CPU_MIPS32 */ case PRID_COMP_SIBYTE: switch (mips_cpu.processor_id & 0xff00) { *************** *** 538,545 **** void nino_setup(void); void nec_osprey_setup(void); ! void nec_eagle_setup(void); ! void nec_korva_setup(void); void ps2_setup(void); ! unsigned long bootmap_size; unsigned long start_pfn, max_pfn, first_usable_pfn; --- 538,545 ---- void nino_setup(void); void nec_osprey_setup(void); ! void nec_eagle_setup(void); ! void nec_korva_setup(void); void ps2_setup(void); ! unsigned long bootmap_size; unsigned long start_pfn, max_pfn, first_usable_pfn; *************** *** 569,575 **** #endif #ifdef CONFIG_COBALT_MICRO_SERVER ! case MACH_GROUP_COBALT: ! cobalt_setup(); ! break; #endif #ifdef CONFIG_DECSTATION --- 569,575 ---- #endif #ifdef CONFIG_COBALT_MICRO_SERVER ! case MACH_GROUP_COBALT: ! cobalt_setup(); ! break; #endif #ifdef CONFIG_DECSTATION *************** *** 625,641 **** #endif #ifdef CONFIG_NEC_OSPREY ! case MACH_GROUP_NEC_VR41XX: ! nec_osprey_setup(); ! break; #endif #ifdef CONFIG_NEC_EAGLE ! case MACH_GROUP_NEC_VR41XX: ! nec_eagle_setup(); ! break; #endif #ifdef CONFIG_NEC_KORVA ! case MACH_GROUP_NEC_VR41XX: ! nec_korva_setup(); ! break; #endif #ifdef CONFIG_MIPS_EV96100 --- 625,641 ---- #endif #ifdef CONFIG_NEC_OSPREY ! case MACH_GROUP_NEC_VR41XX: ! nec_osprey_setup(); ! break; #endif #ifdef CONFIG_NEC_EAGLE ! case MACH_GROUP_NEC_VR41XX: ! nec_eagle_setup(); ! break; #endif #ifdef CONFIG_NEC_KORVA ! case MACH_GROUP_NEC_VR41XX: ! nec_korva_setup(); ! break; #endif #ifdef CONFIG_MIPS_EV96100 |