From: James S. <jsi...@us...> - 2001-11-19 18:31:04
|
Update of /cvsroot/linux-mips/linux/arch/mips/kernel In directory usw-pr-cvs1:/tmp/cvs-serv6428/arch/mips/kernel Modified Files: setup.c Log Message: HP Laserjet support. Index: setup.c =================================================================== RCS file: /cvsroot/linux-mips/linux/arch/mips/kernel/setup.c,v retrieving revision 1.28 retrieving revision 1.29 diff -u -d -r1.28 -r1.29 --- setup.c 2001/11/10 03:52:49 1.28 +++ setup.c 2001/11/19 18:31:01 1.29 @@ -194,7 +194,6 @@ static inline void cpu_probe(void) { - #ifdef CONFIG_CPU_MIPS32 unsigned long config1; #endif @@ -791,6 +790,11 @@ case MACH_GROUP_SIBYTE: swarm_setup(); break; +#endif +#ifdef CONFIG_HP_LASERJET + case MACH_GROUP_HP_LASERJET: + { void hp_setup(void); hp_setup(); } + break; #endif default: panic("Unsupported architecture"); |