diff options
author | Brad Smith <brad@cvs.openbsd.org> | 2006-09-17 19:36:55 +0000 |
---|---|---|
committer | Brad Smith <brad@cvs.openbsd.org> | 2006-09-17 19:36:55 +0000 |
commit | 57d09531222ccf0c4d2a3511dd4be67ec3bf557f (patch) | |
tree | d7b9293521969e89609fbf28fa4a200a26e37a27 /sys | |
parent | c329a0971f0b33fe61eabf458596c87ea9608bf4 (diff) |
do not fill in the anar for the manual 1000baseT media setting case.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/mii/rgephy.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/dev/mii/rgephy.c b/sys/dev/mii/rgephy.c index 5e2b4780409..f28ed70a477 100644 --- a/sys/dev/mii/rgephy.c +++ b/sys/dev/mii/rgephy.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rgephy.c,v 1.15 2006/08/28 01:54:24 brad Exp $ */ +/* $OpenBSD: rgephy.c,v 1.16 2006/09/17 19:36:54 brad Exp $ */ /* * Copyright (c) 2003 * Bill Paul <wpaul@windriver.com>. All rights reserved. @@ -194,8 +194,6 @@ rgephy_service(struct mii_softc *sc, struct mii_data *mii, int cmd) break; case IFM_1000_T: speed = RGEPHY_S1000; - anar |= RGEPHY_ANAR_TX_FD | RGEPHY_ANAR_TX | - RGEPHY_ANAR_10_FD | RGEPHY_ANAR_10; goto setit; case IFM_100_TX: speed = RGEPHY_S100; |