diff options
author | bde <bde@FreeBSD.org> | 1998-08-23 08:26:42 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1998-08-23 08:26:42 +0000 |
commit | 35fa8731253a1d4dacf0c2c7d39f2b77cd4bcc0c (patch) | |
tree | 89e7eed7449d834bed22fb54542711e65643ac81 /sys/i386/isa/rc.c | |
parent | a86ea80a2987ff6a41fbe0c94f9029e6d2b6af5d (diff) | |
download | FreeBSD-src-35fa8731253a1d4dacf0c2c7d39f2b77cd4bcc0c.zip FreeBSD-src-35fa8731253a1d4dacf0c2c7d39f2b77cd4bcc0c.tar.gz |
Added D_TTY to the cdevswitch flags for all tty drivers. This is required
for the Lite2 fix for always returning EIO in dead_read().
Cleaned up the cdevswitch initializers for all tty drivers.
Removed explicit calls to ttsetwater() from all (tty) drivers. ttsetwater()
is now called centrally for opens, not just for parameter changes.
Diffstat (limited to 'sys/i386/isa/rc.c')
-rw-r--r-- | sys/i386/isa/rc.c | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/sys/i386/isa/rc.c b/sys/i386/isa/rc.c index 021f089..5f845c6 100644 --- a/sys/i386/isa/rc.c +++ b/sys/i386/isa/rc.c @@ -98,11 +98,14 @@ static d_ioctl_t rcioctl; static d_stop_t rcstop; static d_devtotty_t rcdevtotty; -#define CDEV_MAJOR 63 -static struct cdevsw rc_cdevsw = - { rcopen, rcclose, rcread, rcwrite, /*63*/ - rcioctl, rcstop, noreset, rcdevtotty,/* rc */ - ttpoll, nommap, NULL, "rc", NULL, -1 }; +#define CDEV_MAJOR 63 +static struct cdevsw rc_cdevsw = { + rcopen, rcclose, rcread, rcwrite, + rcioctl, rcstop, noreset, rcdevtotty, + ttpoll, nommap, NULL, "rc", + NULL, -1, nodump, nopsize, + D_TTY, +}; /* Per-board structure */ static struct rc_softc { @@ -777,8 +780,6 @@ again: goto out; (void) rc_modctl(rc, TIOCM_RTS|TIOCM_DTR, DMSET); - ttsetwater(tp); - if ((rc->rc_msvr & MSVR_CD) || CALLOUT(dev)) (*linesw[tp->t_line].l_modem)(tp, 1); } |