|
From: Jan-Benedict G. <jb...@us...> - 2004-09-29 10:41:37
|
Update of /cvsroot/linux-vax/kernel-2.5/arch/vax/boot In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31236/boot Modified Files: cpu_sel.c Log Message: - I think it's worth not setting the sidex value (in the mv) in each individual cpu_xx.c file, we can do that here... Index: cpu_sel.c =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/arch/vax/boot/cpu_sel.c,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- cpu_sel.c 29 Sep 2004 10:38:38 -0000 1.9 +++ cpu_sel.c 29 Sep 2004 10:41:27 -0000 1.10 @@ -253,8 +253,10 @@ * If a SIDEX match was supplied, too, check it! */ sidex = * ((unsigned long *) mvm->sidex_addr); - if ((sidex & mvm->sidex_mask) == mvm->sidex_match) + if ((sidex & mvm->sidex_mask) == mvm->sidex_match) { + mvm->mv.sidex = sidex; return mvm->mv; + } } } |