diff options
Diffstat (limited to 'sys/i386/isa/istallion.c')
-rw-r--r-- | sys/i386/isa/istallion.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/sys/i386/isa/istallion.c b/sys/i386/isa/istallion.c index c11fc16..6dfe7f9 100644 --- a/sys/i386/isa/istallion.c +++ b/sys/i386/isa/istallion.c @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: istallion.c,v 1.19 1998/06/07 17:10:42 dfr Exp $ + * $Id: istallion.c,v 1.20 1998/08/16 01:21:49 bde Exp $ */ /*****************************************************************************/ @@ -641,12 +641,13 @@ struct isa_driver stlidriver = { */ #define CDEV_MAJOR 75 - -static struct cdevsw stli_cdevsw = - { stliopen, stliclose, stliread, stliwrite, - stliioctl, stlistop, noreset, stlidevtotty, - ttpoll, nommap, NULL, stli_drvname, - NULL, -1 }; +static struct cdevsw stli_cdevsw = { + stliopen, stliclose, stliread, stliwrite, + stliioctl, stlistop, noreset, stlidevtotty, + ttpoll, nommap, NULL, stli_drvname, + NULL, -1, nodump, nopsize, + D_TTY, +}; static stli_devsw_installed = 0; @@ -988,7 +989,6 @@ stliopen_restart: portp->initintios; stli_initopen(portp); wakeup(&portp->state); - ttsetwater(tp); if ((portp->sigs & TIOCM_CD) || callout) (*linesw[tp->t_line].l_modem)(tp, 1); } else { |