diff options
author | Jason Wright <jason@cvs.openbsd.org> | 2006-12-21 21:48:12 +0000 |
---|---|---|
committer | Jason Wright <jason@cvs.openbsd.org> | 2006-12-21 21:48:12 +0000 |
commit | dbba99d219fa4a10f2796265a34120aff635f6de (patch) | |
tree | 4b74b74a842f36b1d6ae6cb869443142970bd5f6 /sys/dev/ic | |
parent | 9ce6c93830a7571aeac737ea707a917c6ea5d80a (diff) |
better yet, nuke all references to sc_enaddr except for the copy into arpcom.ac_enaddr
Diffstat (limited to 'sys/dev/ic')
-rw-r--r-- | sys/dev/ic/hme.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/ic/hme.c b/sys/dev/ic/hme.c index d6d8d68d5d8..ae3a4d98d17 100644 --- a/sys/dev/ic/hme.c +++ b/sys/dev/ic/hme.c @@ -1,4 +1,4 @@ -/* $OpenBSD: hme.c,v 1.44 2006/12/21 21:43:44 jason Exp $ */ +/* $OpenBSD: hme.c,v 1.45 2006/12/21 21:48:11 jason Exp $ */ /* $NetBSD: hme.c,v 1.21 2001/07/07 15:59:37 thorpej Exp $ */ /*- @@ -228,7 +228,7 @@ hme_config(sc) } sc->sc_rb.rb_dmabase = sc->sc_dmamap->dm_segs[0].ds_addr; - printf(", address %s\n", ether_sprintf(sc->sc_enaddr)); + printf(", address %s\n", ether_sprintf(sc->sc_arpcom.ac_enaddr)); /* Initialize ifnet structure. */ strlcpy(ifp->if_xname, sc->sc_dev.dv_xname, sizeof ifp->if_xname); |