Module Name:    src
Committed By:   kiyohara
Date:           Wed Feb  2 04:21:07 UTC 2011

Modified Files:
        src/sys/arch/mmeye/mmeye: conf.c

Log Message:
Add scif console to constab.
Also include "sci.h".


To generate a diff of this commit:
cvs rdiff -u -r1.13 -r1.14 src/sys/arch/mmeye/mmeye/conf.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/arch/mmeye/mmeye/conf.c
diff -u src/sys/arch/mmeye/mmeye/conf.c:1.13 src/sys/arch/mmeye/mmeye/conf.c:1.14
--- src/sys/arch/mmeye/mmeye/conf.c:1.13	Sun Dec 11 12:18:16 2005
+++ src/sys/arch/mmeye/mmeye/conf.c	Wed Feb  2 04:21:07 2011
@@ -1,4 +1,4 @@
-/*	$NetBSD: conf.c,v 1.13 2005/12/11 12:18:16 christos Exp $	*/
+/*	$NetBSD: conf.c,v 1.14 2011/02/02 04:21:07 kiyohara Exp $	*/
 
 /*
  * Copyright (c) 1994, 1995 Charles M. Hannum.  All rights reserved.
@@ -30,20 +30,27 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: conf.c,v 1.13 2005/12/11 12:18:16 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: conf.c,v 1.14 2011/02/02 04:21:07 kiyohara Exp $");
 
 #include <sys/param.h>
 #include <sys/conf.h>
 
+#include "scif.h"
+#include "sci.h"
 #include "com.h"
 
 #include <dev/cons.h>
 
+#define scifcnpollc	nullcnpollc
 #define scicnpollc	nullcnpollc
+cons_decl(scif);
 cons_decl(sci);
 cons_decl(com);
 
 struct consdev constab[] = {
+#if NSCIF > 0
+	cons_init(scif),
+#endif
 #if NSCI > 0
 	cons_init(sci),
 #endif

Reply via email to