summaryrefslogtreecommitdiff
path: root/sys/arch
diff options
context:
space:
mode:
authorNathan Binkert <nate@cvs.openbsd.org>2001-06-21 13:21:51 +0000
committerNathan Binkert <nate@cvs.openbsd.org>2001-06-21 13:21:51 +0000
commit1563926162fa9306a6a8c642cfd658595f08870f (patch)
tree4082e652ba2ac8338869b9a43ee8f37937852bc8 /sys/arch
parent2dbfd090db438eaf05ca66a1de9a0434ccf2063d (diff)
Add support for the Cyclades-Z multiport serial cards.
This has not been thoroughly tested yet, so it's not going into GENERIC now. From NetBSD.
Diffstat (limited to 'sys/arch')
-rw-r--r--sys/arch/i386/i386/conf.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/arch/i386/i386/conf.c b/sys/arch/i386/i386/conf.c
index 43a62198211..fefd4b582ab 100644
--- a/sys/arch/i386/i386/conf.c
+++ b/sys/arch/i386/i386/conf.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: conf.c,v 1.69 2001/05/13 15:39:26 deraadt Exp $ */
+/* $OpenBSD: conf.c,v 1.70 2001/06/21 13:21:46 nate Exp $ */
/* $NetBSD: conf.c,v 1.75 1996/05/03 19:40:20 christos Exp $ */
/*
@@ -210,6 +210,8 @@ cdev_decl(ulpt);
cdev_decl(urio);
#include "ucom.h"
cdev_decl(ucom);
+#include "cz.h"
+cdev_decl(cztty);
#ifdef IPFILTER
#define NIPF 1
@@ -325,6 +327,7 @@ struct cdevsw cdevsw[] =
wsmouse),
cdev_mouse_init(NWSMUX, wsmux), /* 69: ws multiplexor */
cdev_crypto_init(NCRYPTO,crypto), /* 70: /dev/crypto */
+ cdev_tty_init(NCZ,cztty), /* 71: Cyclades-Z serial port */
};
int nchrdev = sizeof(cdevsw) / sizeof(cdevsw[0]);