diff options
author | Jason Downs <downsj@cvs.openbsd.org> | 1996-08-12 03:14:51 +0000 |
---|---|---|
committer | Jason Downs <downsj@cvs.openbsd.org> | 1996-08-12 03:14:51 +0000 |
commit | 185cd55873d7d46e8ecb9d7edd15420908ce4a2b (patch) | |
tree | d10a3f1866b7c9ad1def9919c278bf2df405f344 /sys | |
parent | ca49805f6690da6e3d6c30acaeee568b84ba2c6a (diff) |
Missed a couple things and blew something away by accident.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/sparc/dev/zs.c | 4 | ||||
-rw-r--r-- | sys/arch/sparc/dev/zsvar.h | 5 |
2 files changed, 5 insertions, 4 deletions
diff --git a/sys/arch/sparc/dev/zs.c b/sys/arch/sparc/dev/zs.c index bec292c6b95..1dc749bb4c7 100644 --- a/sys/arch/sparc/dev/zs.c +++ b/sys/arch/sparc/dev/zs.c @@ -1,4 +1,4 @@ -/* $OpenBSD: zs.c,v 1.11 1996/08/12 00:28:16 downsj Exp $ */ +/* $OpenBSD: zs.c,v 1.12 1996/08/12 03:14:49 downsj Exp $ */ /* $NetBSD: zs.c,v 1.37.4.1 1996/06/02 09:07:55 mrg Exp $ */ /* @@ -260,7 +260,7 @@ zsattach(parent, dev, aux) void *aux; { register int zs = dev->dv_unit, unit; - register struct zs_softc *zi; + register struct zs_softc *sc; register struct zs_chanstate *cs; register volatile struct zsdevice *addr; register struct tty *tp, *ctp; diff --git a/sys/arch/sparc/dev/zsvar.h b/sys/arch/sparc/dev/zsvar.h index d0e863ee709..8f9274573ee 100644 --- a/sys/arch/sparc/dev/zsvar.h +++ b/sys/arch/sparc/dev/zsvar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: zsvar.h,v 1.8 1996/08/12 00:28:17 downsj Exp $ */ +/* $OpenBSD: zsvar.h,v 1.9 1996/08/12 03:14:50 downsj Exp $ */ /* $NetBSD: zsvar.h,v 1.8 1996/03/31 22:39:08 pk Exp $ */ /* @@ -92,8 +92,9 @@ struct zsdevice { #define ZRING_MAKE(t, v) ((t) | (v) << 8) struct zs_chanstate { - struct zs_chanstate *cs_next; /* linked list for zshard() */ + struct zs_chanstate *cs_next; /* linked list for zshard() */ struct zs_softc *cs_sc; /* points to my softc */ + volatile struct zschan *cs_zc; /* points to hardware regs */ int cs_unit; /* unit number */ struct tty *cs_ttyp; /* ### */ |