fix "device" name
authorBill Joy <root@ucbvax.Berkeley.EDU>
Wed, 2 Dec 1981 01:58:38 +0000 (17:58 -0800)
committerBill Joy <root@ucbvax.Berkeley.EDU>
Wed, 2 Dec 1981 01:58:38 +0000 (17:58 -0800)
SCCS-vsn: sys/vax/stand/tm.c 4.6
SCCS-vsn: sys/vax/stand/ts.c 4.4

usr/src/sys/vax/stand/tm.c
usr/src/sys/vax/stand/ts.c

index 7e9cf00..8dd2ef0 100644 (file)
@@ -1,4 +1,4 @@
-/*     tm.c    4.5     81/04/03        */
+/*     tm.c    4.6     81/12/01        */
 
 /*
  * TM11/TE??
 
 /*
  * TM11/TE??
@@ -39,8 +39,8 @@ tmstrategy(io, func)
        register struct iob *io;
 {
        register int com, unit, errcnt;
        register struct iob *io;
 {
        register int com, unit, errcnt;
-       register struct device *tmaddr =
-           (struct device *)ubamem(io->i_unit, tmstd[0]);
+       register struct tmdevice *tmaddr =
+           (struct tmdevice *)ubamem(io->i_unit, tmstd[0]);
        int word, info;
 
        unit = io->i_unit;
        int word, info;
 
        unit = io->i_unit;
@@ -87,7 +87,7 @@ retry:
 }
 
 tmquiet(tmaddr)
 }
 
 tmquiet(tmaddr)
-       register struct device *tmaddr;
+       register struct tmdevice *tmaddr;
 {
        register word;
        for (;;) {
 {
        register word;
        for (;;) {
index 7731199..e79d214 100644 (file)
@@ -1,4 +1,4 @@
-/*     ts.c    4.3     81/03/22        */
+/*     ts.c    4.4     81/12/01        */
 
 /*
  * TS11 tape driver
 
 /*
  * TS11 tape driver
@@ -19,7 +19,7 @@ struct        iob     ctsbuf;
 
 u_short        ts_uba;                 /* Unibus address of ts structure */
 
 
 u_short        ts_uba;                 /* Unibus address of ts structure */
 
-struct device *tsaddr = 0;
+struct tsdevice *tsaddr = 0;
 
 struct ts {
        struct ts_cmd ts_cmd;
 
 struct ts {
        struct ts_cmd ts_cmd;