Update of /cvsroot/linux-vax/kernel-2.5/arch/vax/kernel
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28241
Modified Files:
cpu_generic.c
Log Message:
- Remove the debug string.
Index: cpu_generic.c
===================================================================
RCS file: /cvsroot/linux-vax/kernel-2.5/arch/vax/kernel/cpu_generic.c,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -d -r1.12 -r1.13
--- cpu_generic.c 30 Sep 2004 21:13:03 -0000 1.12
+++ cpu_generic.c 2 Oct 2004 18:38:37 -0000 1.13
@@ -196,15 +196,11 @@
void
init_vxt2694_console (unsigned long phys_addr)
{
- char *teststring = "Hello you!";
- int i;
-
if (vxt2694_addr)
return;
- vxt2694_addr = ioremap (phys_addr, 256);
- for (i = 0; i < strlen (teststring); i++)
- vxt2694_putchar (teststring[i]);
+ vxt2694_addr = ioremap (phys_addr, 256);
+ return;
}
#endif /* CONFIG_CPU_VXT */
|