Source-Changes-HG archive

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

[src/trunk]: src/sys/arch/mips/alchemy/dev Initialize the two new members of ...



details:   https://anonhg.NetBSD.org/src/rev/aeb301d916f5
branches:  trunk
changeset: 544008:aeb301d916f5
user:      he <he%NetBSD.org@localhost>
date:      Sat Mar 08 09:42:56 2003 +0000

description:
Initialize the two new members of "struct console" to NULL so that
this file compiles again.

diffstat:

 sys/arch/mips/alchemy/dev/aucom.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (29 lines):

diff -r 24faa0314b6e -r aeb301d916f5 sys/arch/mips/alchemy/dev/aucom.c
--- a/sys/arch/mips/alchemy/dev/aucom.c Sat Mar 08 08:04:24 2003 +0000
+++ b/sys/arch/mips/alchemy/dev/aucom.c Sat Mar 08 09:42:56 2003 +0000
@@ -1,6 +1,6 @@
 #define        AU1x00_UART     /* XXX */
 
-/*     $NetBSD: aucom.c,v 1.3 2002/10/23 09:11:34 jdolecek Exp $       */
+/*     $NetBSD: aucom.c,v 1.4 2003/03/08 09:42:56 he Exp $     */
 
 /*-
  * Copyright (c) 1998, 1999 The NetBSD Foundation, Inc.
@@ -80,7 +80,7 @@
  * XXX: hacked to work with almost 16550-alike Alchemy Au1X00 on-chip uarts
  */
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: aucom.c,v 1.3 2002/10/23 09:11:34 jdolecek Exp $");
+__KERNEL_RCSID(0, "$NetBSD: aucom.c,v 1.4 2003/03/08 09:42:56 he Exp $");
 
 #include "opt_com.h"
 #include "opt_ddb.h"
@@ -2403,7 +2403,7 @@
  */
 struct consdev comcons = {
        NULL, NULL, comcngetc, comcnputc, comcnpollc, NULL,
-       NODEV, CN_NORMAL
+       NULL, NULL, NODEV, CN_NORMAL
 };
 
 



Home | Main Index | Thread Index | Old Index