diff options
author | Jason Wright <jason@cvs.openbsd.org> | 1999-10-13 19:32:50 +0000 |
---|---|---|
committer | Jason Wright <jason@cvs.openbsd.org> | 1999-10-13 19:32:50 +0000 |
commit | 8bbcd60b7c0a082f4db680dc88b607342d3c2def (patch) | |
tree | 27a6f2107ec3f252663c997691873ca493ae10f0 /sys/dev | |
parent | 9e48932feec8caf11f28ce75d16987aecfc4b4b3 (diff) |
manually add IFM_AUTO (workaround for fxp)
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/mii/iophy.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/dev/mii/iophy.c b/sys/dev/mii/iophy.c index 9de29886912..a240e76e914 100644 --- a/sys/dev/mii/iophy.c +++ b/sys/dev/mii/iophy.c @@ -1,4 +1,4 @@ -/* $OpenBSD: iophy.c,v 1.2 1999/10/12 17:08:56 deraadt Exp $ */ +/* $OpenBSD: iophy.c,v 1.3 1999/10/13 19:32:49 jason Exp $ */ /* $NetBSD: iophy.c,v 1.1 1999/09/05 00:40:27 soren Exp $ */ /* @@ -150,6 +150,8 @@ iophyattach(parent, self, aux) ADD(IFM_MAKEWORD(IFM_ETHER, IFM_NONE, 0, sc->mii_inst), BMCR_ISO); + ADD(IFM_MAKEWORD(IFM_ETHER, IFM_AUTO, 0, sc->mii_inst), + BMCR_ISO); #if 0 ADD(IFM_MAKEWORD(IFM_ETHER, IFM_100_TX, IFM_LOOP, sc->mii_inst), BMCR_LOOP|BMCR_S100); |