diff options
author | Todd T. Fries <todd@cvs.openbsd.org> | 2002-06-09 03:14:19 +0000 |
---|---|---|
committer | Todd T. Fries <todd@cvs.openbsd.org> | 2002-06-09 03:14:19 +0000 |
commit | ccdcaed6c36359c5304b860b70682f290dc347b2 (patch) | |
tree | 01252ff1c7131e9290bbdb78ea60bcea4f1f0be0 /sys/dev/ic/awivar.h | |
parent | 8d960a3582efa749fdaa10a8b161486c0d7d34d4 (diff) |
a step towards consistancy; in general:
'struct arpcom foo' -> 'struct arpcom sc_arpcom'
ok itojun@
Diffstat (limited to 'sys/dev/ic/awivar.h')
-rw-r--r-- | sys/dev/ic/awivar.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/ic/awivar.h b/sys/dev/ic/awivar.h index 77e61755638..0bb13b1f431 100644 --- a/sys/dev/ic/awivar.h +++ b/sys/dev/ic/awivar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: awivar.h,v 1.4 2002/03/14 01:26:54 millert Exp $ */ +/* $OpenBSD: awivar.h,v 1.5 2002/06/09 03:14:18 todd Exp $ */ /* $NetBSD: awivar.h,v 1.12 2000/07/21 04:48:56 onoe Exp $ */ /*- @@ -105,7 +105,7 @@ struct awi_softc #endif #ifdef __OpenBSD__ struct device sc_dev; - struct arpcom sc_ec; + struct arpcom sc_arpcom; void *sc_ih; /* interrupt handler */ #endif struct am79c930_softc sc_chip; |