summaryrefslogtreecommitdiff
path: root/sys/dev/mii/icsphy.c
diff options
context:
space:
mode:
authorBrad Smith <brad@cvs.openbsd.org>2005-01-28 18:27:56 +0000
committerBrad Smith <brad@cvs.openbsd.org>2005-01-28 18:27:56 +0000
commit5ca8741541835fac1f183eecad5bdb7e8b6aa166 (patch)
treece32cc4bff59db745207b1fb0166f5f3f4f6da3d /sys/dev/mii/icsphy.c
parented395be04ed325e1c638a0a6ce8120ea072595b7 (diff)
Get flags passed down to PHY drivers correctly. This was done on
an adhoc basis in a couple of PHY drivers, this fixes it more generally. From NetBSD Fixes panics with aue(4) NICs.
Diffstat (limited to 'sys/dev/mii/icsphy.c')
-rw-r--r--sys/dev/mii/icsphy.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/mii/icsphy.c b/sys/dev/mii/icsphy.c
index 868c4a0e3e5..be6f994e3d7 100644
--- a/sys/dev/mii/icsphy.c
+++ b/sys/dev/mii/icsphy.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: icsphy.c,v 1.14 2004/09/27 18:25:48 brad Exp $ */
+/* $OpenBSD: icsphy.c,v 1.15 2005/01/28 18:27:55 brad Exp $ */
/* $NetBSD: icsphy.c,v 1.17 2000/02/02 23:34:56 thorpej Exp $ */
/*-
@@ -155,7 +155,7 @@ icsphyattach(struct device *parent, struct device *self, void *aux)
sc->mii_phy = ma->mii_phyno;
sc->mii_funcs = &icsphy_funcs;
sc->mii_pdata = mii;
- sc->mii_flags = mii->mii_flags;
+ sc->mii_flags = ma->mii_flags;
PHY_RESET(sc);