|
From: Kenn H. <ke...@us...> - 2004-07-30 00:17:25
|
Update of /cvsroot/linux-vax/kernel-2.5/arch/vax/kernel In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29006/arch/vax/kernel Modified Files: cpu_generic.c Log Message: Make generic early console I/O routines for DZ available always, even if CONFIG_DZ is not set Index: cpu_generic.c =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/arch/vax/kernel/cpu_generic.c,v retrieving revision 1.10 retrieving revision 1.11 diff -u -d -r1.10 -r1.11 --- cpu_generic.c 30 May 2004 09:29:01 -0000 1.10 +++ cpu_generic.c 30 Jul 2004 00:17:16 -0000 1.11 @@ -104,7 +104,7 @@ return 0; } -#ifdef CONFIG_DZ +//#ifdef CONFIG_DZ /************************************************************************/ /* These functions can be used by implementations that do console I/O via a DZ11-compatible chip (KA410, KA42 and KA43 CPUs). These functions can @@ -112,6 +112,8 @@ mapped by map_dz11_regs(). */ +volatile struct dz11_regs *dz11_addr; + /* This is the serial line on the DZ11 that we should use as the console. Normally it is line 3 */ static unsigned int dz11_line; @@ -168,5 +170,5 @@ dz11_addr = ioremap(dz11_phys_addr, sizeof(*dz11_addr)); dz11_line = line; } -#endif /* CONFIG_DZ */ +//#endif /* CONFIG_DZ */ |