diff options
author | jkh <jkh@FreeBSD.org> | 1995-09-03 23:55:53 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1995-09-03 23:55:53 +0000 |
commit | 864d8a877ca6e1f78bb3b404658a992fa3bb2bdc (patch) | |
tree | 98d12ec3839f16e4c228c1f73e3bf02ca2575b31 | |
parent | c488bc98279834fe5a3e5b1a119324cbdc480aca (diff) | |
download | FreeBSD-src-864d8a877ca6e1f78bb3b404658a992fa3bb2bdc.zip FreeBSD-src-864d8a877ca6e1f78bb3b404658a992fa3bb2bdc.tar.gz |
Now apply local changes to make this compile in 2.2-current (sorry about
delay between commit of original author's sources and my changes - I was
called away).
-rw-r--r-- | sys/i386/i386/conf.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/sys/i386/i386/conf.c b/sys/i386/i386/conf.c index 3ec8186..62be8e2 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.93 1995/08/19 15:59:32 joerg Exp $ + * $Id: conf.c,v 1.94 1995/09/03 19:53:11 jkh Exp $ */ #include <sys/param.h> @@ -963,7 +963,6 @@ d_ioctl_t dgbioctl; d_select_t dgbselect; d_stop_t dgbstop; #define dgbreset nxreset -#define dgbdevtotty nxdevtotty #else #define dgbopen nxopen #define dgbclose nxclose @@ -973,7 +972,6 @@ d_stop_t dgbstop; #define dgbstop nxstop #define dgbreset nxreset #define dgbselect nxselect -#define dgbdevtotty nxdevtotty #endif /* Specialix serial driver */ @@ -1301,7 +1299,7 @@ struct cdevsw cdevsw[] = itelioctl, nostop, nullreset, nodevtotty,/* itel */ seltrue, nommap, NULL }, { dgbopen, dgbclose, dgbread, dgbwrite, /*58*/ - dgbioctl, dgbstop, dgbreset, dgb_tty, /* dgb */ + dgbioctl, dgbstop, dgbreset, nodevtotty, /* dgb */ dgbselect, nommap, NULL }, { ispyopen, ispyclose, ispyread, nowrite, /*59*/ ispyioctl, nostop, nullreset, nodevtotty,/* ispy */ |