Update of /cvsroot/linux-vax/kernel-2.5/arch/vax/boot
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32127/arch/vax/boot
Modified Files:
cpu_sel.c
Log Message:
- Fix pointer vs. struct braino.
Index: cpu_sel.c
===================================================================
RCS file: /cvsroot/linux-vax/kernel-2.5/arch/vax/boot/cpu_sel.c,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -d -r1.10 -r1.11
--- cpu_sel.c 29 Sep 2004 10:41:27 -0000 1.10
+++ cpu_sel.c 29 Sep 2004 10:45:45 -0000 1.11
@@ -254,7 +254,7 @@
*/
sidex = * ((unsigned long *) mvm->sidex_addr);
if ((sidex & mvm->sidex_mask) == mvm->sidex_match) {
- mvm->mv.sidex = sidex;
+ mvm->mv->sidex = sidex;
return mvm->mv;
}
}
|