diff options
author | Nathan Binkert <nate@cvs.openbsd.org> | 2001-06-21 13:21:51 +0000 |
---|---|---|
committer | Nathan Binkert <nate@cvs.openbsd.org> | 2001-06-21 13:21:51 +0000 |
commit | 1563926162fa9306a6a8c642cfd658595f08870f (patch) | |
tree | 4082e652ba2ac8338869b9a43ee8f37937852bc8 /sys/arch | |
parent | 2dbfd090db438eaf05ca66a1de9a0434ccf2063d (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.c | 5 |
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]); |