diff options
author | Brad Smith <brad@cvs.openbsd.org> | 2005-01-28 18:27:56 +0000 |
---|---|---|
committer | Brad Smith <brad@cvs.openbsd.org> | 2005-01-28 18:27:56 +0000 |
commit | 5ca8741541835fac1f183eecad5bdb7e8b6aa166 (patch) | |
tree | ce32cc4bff59db745207b1fb0166f5f3f4f6da3d /sys/dev/mii/mtdphy.c | |
parent | ed395be04ed325e1c638a0a6ce8120ea072595b7 (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/mtdphy.c')
-rw-r--r-- | sys/dev/mii/mtdphy.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/mii/mtdphy.c b/sys/dev/mii/mtdphy.c index c4b9a9bb05f..dbcdfe8db99 100644 --- a/sys/dev/mii/mtdphy.c +++ b/sys/dev/mii/mtdphy.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mtdphy.c,v 1.10 2004/09/27 18:25:48 brad Exp $ */ +/* $OpenBSD: mtdphy.c,v 1.11 2005/01/28 18:27:55 brad Exp $ */ /* * Copyright (c) 1998, 1999 Jason L. Wright (jason@thought.net) @@ -88,7 +88,7 @@ mtdphyattach(struct device *parent, struct device *self, void *aux) sc->mii_phy = ma->mii_phyno; sc->mii_funcs = &mtdphy_funcs; sc->mii_pdata = mii; - sc->mii_flags = mii->mii_flags; + sc->mii_flags = ma->mii_flags; PHY_RESET(sc); |