summaryrefslogtreecommitdiff
path: root/sys/dev/mii
diff options
context:
space:
mode:
authorBrad Smith <brad@cvs.openbsd.org>2006-03-04 09:19:14 +0000
committerBrad Smith <brad@cvs.openbsd.org>2006-03-04 09:19:14 +0000
commit262f82da2cf976a72aabf00605cfca431183da1e (patch)
treeef00211c8013fce842a8d8c6e1d78805ced775d8 /sys/dev/mii
parentd1cf25b69ac78c0e945e405055d763c0b1a9282f (diff)
Do not enable the Ethernet@WireSpeed PHY feature on 5705's and not 5750's
as the comment says.
Diffstat (limited to 'sys/dev/mii')
-rw-r--r--sys/dev/mii/brgphy.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/mii/brgphy.c b/sys/dev/mii/brgphy.c
index 76d4d325409..25456f95c0e 100644
--- a/sys/dev/mii/brgphy.c
+++ b/sys/dev/mii/brgphy.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: brgphy.c,v 1.46 2005/12/10 22:17:04 brad Exp $ */
+/* $OpenBSD: brgphy.c,v 1.47 2006/03/04 09:19:13 brad Exp $ */
/*
* Copyright (c) 2000
@@ -490,7 +490,7 @@ brgphy_reset(struct mii_softc *sc)
*/
if (strncmp(ifp->if_xname, "bge", 3) == 0 &&
(BGE_ASICREV(bge_sc->bge_chipid) == BGE_ASICREV_BCM5700 ||
- (BGE_ASICREV(bge_sc->bge_chipid) == BGE_ASICREV_BCM5750 &&
+ (BGE_ASICREV(bge_sc->bge_chipid) == BGE_ASICREV_BCM5705 &&
(bge_sc->bge_chipid != BGE_CHIPID_BCM5705_A0 &&
bge_sc->bge_chipid != BGE_CHIPID_BCM5705_A1))))
return;