Module Name: src
Committed By: kiyohara
Date: Tue Jun 21 15:28:05 UTC 2011
Modified Files:
src/sys/arch/hpcarm/hpcarm: autoconf.c
Log Message:
Add bicons to constab.
To generate a diff of this commit:
cvs rdiff -u -r1.18 -r1.19 src/sys/arch/hpcarm/hpcarm/autoconf.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/hpcarm/hpcarm/autoconf.c
diff -u src/sys/arch/hpcarm/hpcarm/autoconf.c:1.18 src/sys/arch/hpcarm/hpcarm/autoconf.c:1.19
--- src/sys/arch/hpcarm/hpcarm/autoconf.c:1.18 Sat Apr 17 13:36:21 2010
+++ src/sys/arch/hpcarm/hpcarm/autoconf.c Tue Jun 21 15:28:05 2011
@@ -1,4 +1,4 @@
-/* $NetBSD: autoconf.c,v 1.18 2010/04/17 13:36:21 nonaka Exp $ */
+/* $NetBSD: autoconf.c,v 1.19 2011/06/21 15:28:05 kiyohara Exp $ */
/*
* Copyright (c) 1994-1998 Mark Brinicombe.
@@ -36,7 +36,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: autoconf.c,v 1.18 2010/04/17 13:36:21 nonaka Exp $");
+__KERNEL_RCSID(0, "$NetBSD: autoconf.c,v 1.19 2011/06/21 15:28:05 kiyohara Exp $");
#include "opt_md.h"
@@ -188,14 +188,20 @@
* known algorithm unless we see a pressing need otherwise.
*/
+#include "biconsdev.h"
+
#include <dev/cons.h>
-cons_decl(com);
cons_decl(sacom);
+#define biconscnpollc nullcnpollc
+cons_decl(bicons);
struct consdev constab[] = {
#if (NSACOM > 0)
cons_init(sacom),
#endif
+#if (NBICONSDEV > 0)
+ cons_init(bicons),
+#endif
{ NULL },
};