From b0d3f4311f06173b4d38ba0a98ca45dc8dd43ab4 Mon Sep 17 00:00:00 2001 From: brian Date: Tue, 21 Apr 1998 02:39:48 +0000 Subject: o Move debug stuff down a bit so that it doesn't try to dereference uninitialized pointers. o Fix DEVFS permissions o Fix DEVFS minor numbers o Add initial & lock devices for cua device. o Fix permissions in line with sio. --- sys/gnu/i386/isa/dgb.c | 69 +++++++++++++++++++++++++++----------------------- 1 file changed, 38 insertions(+), 31 deletions(-) (limited to 'sys/gnu/i386') diff --git a/sys/gnu/i386/isa/dgb.c b/sys/gnu/i386/isa/dgb.c index a8280a3..8cceb76 100644 --- a/sys/gnu/i386/isa/dgb.c +++ b/sys/gnu/i386/isa/dgb.c @@ -1,5 +1,5 @@ /*- - * dgb.c $Id: dgb.c,v 1.31 1998/01/24 02:54:07 eivind Exp $ + * dgb.c $Id: dgb.c,v 1.32 1998/04/15 17:44:55 bde Exp $ * * Digiboard driver. * @@ -154,10 +154,12 @@ struct dgb_p { u_char mustdrain; /* data must be waited to drain in dgbparam() */ #ifdef DEVFS struct { - void *tty; - void *init; - void *lock; - void *cua; + void *ttyd; + void *ttyi; + void *ttyl; + void *cuaa; + void *cuai; + void *cual; } devfs_token; #endif }; @@ -931,30 +933,35 @@ load_fep: port->it_in.c_ispeed = port->it_in.c_ospeed = dgbdefaultrate; port->it_out = port->it_in; #ifdef DEVFS -/*XXX*/ /* fix the minor numbers */ - port->devfs_token.tty = - devfs_add_devswf(&dgb_cdevsw, - (unit*32)+i,/*mytical number*/ - DV_CHR, 0, 0, 0600, "dgb%d.%d", unit, - i); - - port->devfs_token.tty = - devfs_add_devswf(&dgb_cdevsw, - (unit*32)+i+64,/*mytical number*/ - DV_CHR, 0, 0, 0600, "idgb%d.%d", unit, - i); - - port->devfs_token.tty = - devfs_add_devswf(&dgb_cdevsw, - (unit*32)+i+128,/*mytical number*/ - DV_CHR, 0, 0, 0600, "ldgb%d.%d", unit, - i); - - port->devfs_token.tty = - devfs_add_devswf(&dgb_cdevsw, - (unit*32)+i+192,/*mytical number*/ - DV_CHR, 0, 0, 0600, "dgbcua%d.%d", - unit, i); + port->devfs_token.ttyd = + devfs_add_devswf(&dgb_cdevsw, (unit*32)+i, + DV_CHR, UID_ROOT, GID_WHEEL, 0600, + "dgb%d.%d", unit, i); + + port->devfs_token.ttyi = + devfs_add_devswf(&dgb_cdevsw, (unit*32)+i+32, + DV_CHR, UID_ROOT, GID_WHEEL, 0600, + "idgb%d.%d", unit, i); + + port->devfs_token.ttyl = + devfs_add_devswf(&dgb_cdevsw, (unit*32)+i+64, + DV_CHR, UID_ROOT, GID_WHEEL, 0600, + "ldgb%d.%d", unit, i); + + port->devfs_token.cuaa = + devfs_add_devswf(&dgb_cdevsw, (unit*32)+i+128, + DV_CHR, UID_UUCP, GID_DIALER, 0660, + "dgbcua%d.%d", unit, i); + + port->devfs_token.cuai = + devfs_add_devswf(&dgb_cdevsw, (unit*32)+i+160, + DV_CHR, UID_UUCP, GID_DIALER, 0660, + "idgbcua%d.%d", unit, i); + + port->devfs_token.cual = + devfs_add_devswf(&dgb_cdevsw, (unit*32)+i+192, + DV_CHR, UID_UUCP, GID_DIALER, 0660, + "ldgbcua%d.%d", unit, i); #endif } @@ -2209,8 +2216,6 @@ dgbstop(tp, rw) BoardMemWinState ws=bmws_get(); - DPRINT3(DB_WR,"dgb%d: port%d: stop\n",port->unit, port->pnum); - unit=MINOR_TO_UNIT(minor(tp->t_dev)); pnum=MINOR_TO_PORT(minor(tp->t_dev)); @@ -2218,6 +2223,8 @@ dgbstop(tp, rw) port=&sc->ports[pnum]; bc=port->brdchan; + DPRINT3(DB_WR,"dgb%d: port%d: stop\n",port->unit, port->pnum); + s = spltty(); setwin(sc,0); -- cgit v1.1