diff options
author | 2006-09-17 19:36:54 +0000 | |
---|---|---|
committer | 2006-09-17 19:36:54 +0000 | |
commit | 3fed6e99cf6f6c7612c45c0536a8f4ea5442dbe0 (patch) | |
tree | 00fd3bffe1c69cc9831a3d698ba2488a34830cee | |
parent | Shorten the area where interrupts are enabled to calibrate delay(), and run (diff) | |
download | wireguard-openbsd-3fed6e99cf6f6c7612c45c0536a8f4ea5442dbe0.tar.xz wireguard-openbsd-3fed6e99cf6f6c7612c45c0536a8f4ea5442dbe0.zip |
do not fill in the anar for the manual 1000baseT media setting case.
-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; |