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/cardbus | |
parent | 8d960a3582efa749fdaa10a8b161486c0d7d34d4 (diff) |
a step towards consistancy; in general:
'struct arpcom foo' -> 'struct arpcom sc_arpcom'
ok itojun@
Diffstat (limited to 'sys/dev/cardbus')
-rw-r--r-- | sys/dev/cardbus/if_dc_cardbus.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/cardbus/if_dc_cardbus.c b/sys/dev/cardbus/if_dc_cardbus.c index 8203364e71c..02c2c183c4f 100644 --- a/sys/dev/cardbus/if_dc_cardbus.c +++ b/sys/dev/cardbus/if_dc_cardbus.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_dc_cardbus.c,v 1.10 2002/04/16 21:29:54 jason Exp $ */ +/* $OpenBSD: if_dc_cardbus.c,v 1.11 2002/06/09 03:14:17 todd Exp $ */ #include <sys/param.h> #include <sys/systm.h> @@ -149,8 +149,8 @@ dc_cardbus_attach(parent, self, aux) sc->dc_pmode = DC_PMODE_MII; bcopy(ca->ca_cis.funce.network.netid, - &sc->arpcom.ac_enaddr, - sizeof sc->arpcom.ac_enaddr); + &sc->sc_arpcom.ac_enaddr, + sizeof sc->sc_arpcom.ac_enaddr); } break; case PCI_VENDOR_ADMTEK: |