diff options
author | jkh <jkh@FreeBSD.org> | 1995-03-05 21:41:40 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1995-03-05 21:41:40 +0000 |
commit | c7088a996b8955c113166277ac0053bbb6c6c6cf (patch) | |
tree | fdb98e6e4d8a97f4d1e10337fa25f31fb7e9049f | |
parent | 0b1b77445c113c4f32628b2f73893be43776b864 (diff) | |
download | FreeBSD-src-c7088a996b8955c113166277ac0053bbb6c6c6cf.zip FreeBSD-src-c7088a996b8955c113166277ac0053bbb6c6c6cf.tar.gz |
Reserve cdev 63 for Brian Litzinger & his Talisman Lite MPEG decoder
Submitted by: Brian Litzinger <brian@MediaCity.com>
-rw-r--r-- | sys/i386/i386/conf.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/i386/i386/conf.c b/sys/i386/i386/conf.c index 9ba81b2..ccefbe7 100644 --- a/sys/i386/i386/conf.c +++ b/sys/i386/i386/conf.c @@ -42,7 +42,7 @@ * SUCH DAMAGE. * * from: @(#)conf.c 5.8 (Berkeley) 5/12/91 - * $Id: conf.c,v 1.74 1995/03/02 07:38:12 jkh Exp $ + * $Id: conf.c,v 1.75 1995/03/04 20:52:38 dufault Exp $ */ #include <sys/param.h> @@ -1139,6 +1139,10 @@ struct cdevsw cdevsw[] = { wormopen, wormclose, rawread, rawwrite, /*62*/ wormioctl, nostop, nullreset, nodevtotty,/* worm */ seltrue, nommap, wormstrategy }, + { nxopen, nxclose, nxread, /*63*/ + nxwrite, nxioctl, nxstop, /* Talisman*/ + nxreset, nxdevtotty, nxselect, + nxmmap, NULL }, }; int nchrdev = sizeof (cdevsw) / sizeof (cdevsw[0]); |