Update of /cvsroot/linux-vax/kernel-2.5/arch/vax/kernel
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25625
Modified Files:
cpu_vxt.c
Log Message:
- VXT seems to not have a DZ11 chip for console support:-)
Index: cpu_vxt.c
===================================================================
RCS file: /cvsroot/linux-vax/kernel-2.5/arch/vax/kernel/cpu_vxt.c,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -d -r1.12 -r1.13
--- cpu_vxt.c 26 Feb 2004 10:34:29 -0000 1.12
+++ cpu_vxt.c 30 Sep 2004 21:15:14 -0000 1.13
@@ -16,6 +16,7 @@
#include <asm/mtpr.h>
#include <asm/mv.h>
#include <asm/vaxcpu.h>
+#include <asm/system.h>
#include <asm/clock.h> /* For clock_init routines */
static void vxt_pre_vm_init(void)
@@ -25,10 +26,14 @@
static void vxt_post_vm_init(void)
{
+#if 0
#ifdef CONFIG_DZ
init_dz11_console(0x200A0000, 3);
dz_serial_console_init();
#endif
+#endif
+ init_vxt2694_console (0x200a0000);
+ //register_console (&vax_console);
}
static const char *vxt_cpu_type_str(void)
@@ -41,8 +46,10 @@
.post_vm_init = vxt_post_vm_init,
.pre_vm_putchar = ka4x_prom_putchar,
.pre_vm_getchar = ka4x_prom_getchar,
- .post_vm_putchar = dz11_putchar,
- .post_vm_getchar = dz11_getchar,
+ //.post_vm_putchar = dz11_putchar,
+ .post_vm_putchar = vxt2694_putchar,
+ //.post_vm_getchar = dz11_getchar,
+ .post_vm_getchar = vxt2694_putchar,
.cpu_type_str = vxt_cpu_type_str,
.clock_init = generic_clock_init,
};
|