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/nsgphy.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/nsgphy.c')
-rw-r--r-- | sys/dev/mii/nsgphy.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/mii/nsgphy.c b/sys/dev/mii/nsgphy.c index bb42ba66495..8707b97a7b9 100644 --- a/sys/dev/mii/nsgphy.c +++ b/sys/dev/mii/nsgphy.c @@ -1,4 +1,4 @@ -/* $OpenBSD: nsgphy.c,v 1.12 2004/09/27 18:25:48 brad Exp $ */ +/* $OpenBSD: nsgphy.c,v 1.13 2005/01/28 18:27:55 brad Exp $ */ /* * Copyright (c) 2001 Wind River Systems * Copyright (c) 2001 @@ -120,7 +120,7 @@ nsgphyattach(struct device *parent, struct device *self, void *aux) sc->mii_phy = ma->mii_phyno; sc->mii_funcs = &nsgphy_funcs; sc->mii_pdata = mii; - sc->mii_flags = mii->mii_flags; + sc->mii_flags = ma->mii_flags; sc->mii_anegticks = 10; PHY_RESET(sc); |