Update of /cvsroot/linux-vax/kernel-2.5/arch/vax/boot
In directory sc8-pr-cvs1:/tmp/cvs-serv8873/arch/vax/boot
Modified Files:
cpu_sel.c
Log Message:
Fix multiple definitions of symbols that were covered up by us not
using GCC's -fno-common option
Index: cpu_sel.c
===================================================================
RCS file: /cvsroot/linux-vax/kernel-2.5/arch/vax/boot/cpu_sel.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- cpu_sel.c 28 May 2002 20:29:28 -0000 1.1
+++ cpu_sel.c 24 Jan 2003 00:28:31 -0000 1.2
@@ -153,7 +153,7 @@
return NULL;
}
-struct vax_mv *idcpu_rigel()
+struct vax_mv *idcpu_rigel(void)
{
/* We don't know how to interpret the SIDEX in this case, but the
only CPU we know of that will match this far is the KA43 (as
@@ -162,7 +162,7 @@
return &mv_ka43;
}
-struct vax_mv *idcpu_mariah()
+struct vax_mv *idcpu_mariah(void)
{
/* We don't know how to interpret the SIDEX in this case, but the
only CPU we know of that will match this far is the KA46 (as
@@ -171,7 +171,7 @@
return &mv_ka46;
}
-struct vax_mv *idcpu_nvax()
+struct vax_mv *idcpu_nvax(void)
{
/* We don't know how to interpret the SIDEX in this case, but the
only CPU we know of that will match this far is the KA55 (as
|