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/nsphyter.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/nsphyter.c')
-rw-r--r-- | sys/dev/mii/nsphyter.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/mii/nsphyter.c b/sys/dev/mii/nsphyter.c index b6b52aa643f..e5cab70a76b 100644 --- a/sys/dev/mii/nsphyter.c +++ b/sys/dev/mii/nsphyter.c @@ -1,4 +1,4 @@ -/* $OpenBSD: nsphyter.c,v 1.8 2004/09/27 18:25:48 brad Exp $ */ +/* $OpenBSD: nsphyter.c,v 1.9 2005/01/28 18:27:55 brad Exp $ */ /* $NetBSD: nsphyter.c,v 1.5 2000/02/02 23:34:57 thorpej Exp $ */ /*- @@ -140,7 +140,7 @@ nsphyterattach(struct device *parent, struct device *self, void *aux) sc->mii_phy = ma->mii_phyno; sc->mii_funcs = &nsphyter_funcs; sc->mii_pdata = mii; - sc->mii_flags = mii->mii_flags; + sc->mii_flags = ma->mii_flags; PHY_RESET(sc); |