From: Jun S. <ju...@us...> - 2001-08-22 05:31:30
|
Update of /cvsroot/linux-mips/linux/arch/mips/kernel In directory usw-pr-cvs1:/tmp/cvs-serv27237/arch/mips/kernel Modified Files: head.S Log Message: Missing CONFIG_MIPS_AU1000 around vec0_au1000, which causes a complain about missing translate_pte. Index: head.S =================================================================== RCS file: /cvsroot/linux-mips/linux/arch/mips/kernel/head.S,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** head.S 2001/08/18 18:04:54 1.5 --- head.S 2001/08/22 05:31:27 1.6 *************** *** 97,100 **** --- 97,101 ---- END(except_vec0_r4000) + #ifdef CONFIG_MIPS_AU1000 /* TLB refill, EXL == 0, Au1000 version */ /* we'll worry about smp later */ *************** *** 116,119 **** --- 117,121 ---- nop END(except_vec0_au1000) + #endif /* TLB refill, EXL == 0, R4600 version */ |