Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/dev Revert previous change as it breaks the build on a n...



details:   https://anonhg.NetBSD.org/src/rev/427e1a22bf6b
branches:  trunk
changeset: 553568:427e1a22bf6b
user:      cdi <cdi%NetBSD.org@localhost>
date:      Sat Oct 18 21:26:22 2003 +0000

description:
Revert previous change as it breaks the build on a number of ports.

diffstat:

 sys/dev/cons.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 7b11d6ad80e8 -r 427e1a22bf6b sys/dev/cons.c
--- a/sys/dev/cons.c    Sat Oct 18 20:11:04 2003 +0000
+++ b/sys/dev/cons.c    Sat Oct 18 21:26:22 2003 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: cons.c,v 1.51 2003/10/17 18:16:43 cdi Exp $    */
+/*     $NetBSD: cons.c,v 1.52 2003/10/18 21:26:22 cdi Exp $    */
 
 /*
  * Copyright (c) 1990, 1993
@@ -78,7 +78,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: cons.c,v 1.51 2003/10/17 18:16:43 cdi Exp $");
+__KERNEL_RCSID(0, "$NetBSD: cons.c,v 1.52 2003/10/18 21:26:22 cdi Exp $");
 
 #include <sys/param.h>
 #include <sys/proc.h>
@@ -109,7 +109,7 @@
 };
 
 struct tty *constty = NULL;    /* virtual console output device */
-struct consdev *cn_tab = NULL; /* physical console device info */
+struct consdev *cn_tab;        /* physical console device info */
 struct vnode *cn_devvp[2];     /* vnode for underlying device. */
 
 int



Home | Main Index | Thread Index | Old Index