From 2e0ec09b9b197c45baa0dd4ddad656f5406031d8 Mon Sep 17 00:00:00 2001 From: Bill Joy Date: Tue, 1 Dec 1981 17:58:38 -0800 Subject: [PATCH 1/1] fix "device" name 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 | 8 ++++---- usr/src/sys/vax/stand/ts.c | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/usr/src/sys/vax/stand/tm.c b/usr/src/sys/vax/stand/tm.c index 7e9cf0045a..8dd2ef0e01 100644 --- a/usr/src/sys/vax/stand/tm.c +++ b/usr/src/sys/vax/stand/tm.c @@ -1,4 +1,4 @@ -/* tm.c 4.5 81/04/03 */ +/* tm.c 4.6 81/12/01 */ /* * TM11/TE?? @@ -39,8 +39,8 @@ tmstrategy(io, func) 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; @@ -87,7 +87,7 @@ retry: } tmquiet(tmaddr) - register struct device *tmaddr; + register struct tmdevice *tmaddr; { register word; for (;;) { diff --git a/usr/src/sys/vax/stand/ts.c b/usr/src/sys/vax/stand/ts.c index 7731199936..e79d214910 100644 --- a/usr/src/sys/vax/stand/ts.c +++ b/usr/src/sys/vax/stand/ts.c @@ -1,4 +1,4 @@ -/* ts.c 4.3 81/03/22 */ +/* ts.c 4.4 81/12/01 */ /* * TS11 tape driver @@ -19,7 +19,7 @@ struct iob ctsbuf; u_short ts_uba; /* Unibus address of ts structure */ -struct device *tsaddr = 0; +struct tsdevice *tsaddr = 0; struct ts { struct ts_cmd ts_cmd; -- 2.20.1