Update of /cvsroot/linux-vax/kernel-2.5/arch/vax/lib
In directory sc8-pr-cvs1:/tmp/cvs-serv8999
Modified Files:
console.c
Log Message:
Switch to named initializers
Index: console.c
===================================================================
RCS file: /cvsroot/linux-vax/kernel-2.5/arch/vax/lib/console.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- console.c 20 May 2002 00:33:33 -0000 1.4
+++ console.c 1 Dec 2002 23:59:25 -0000 1.5
@@ -30,17 +30,9 @@
series. */
struct console vax_console = {
- "VAXcons",
- vaxcons_write,
- NULL, /* read */
- NULL, /* device */
- NULL, /* wait_key */
- NULL, /* unblank */
- NULL, /* setup */
- CON_PRINTBUFFER, /* flags */
- 0, /* index */
- 0, /* cflag */
- NULL, /* next */
+ name: "VAXcons",
+ write: vaxcons_write,
+ flags: CON_PRINTBUFFER,
};
static void vaxcons_write(struct console *cons, const char *s, unsigned int len)
|