diff options
author | 2015-07-19 06:14:37 +0000 | |
---|---|---|
committer | 2015-07-19 06:14:37 +0000 | |
commit | 2028362c9c0a99fcddf6b4f062fdac01a4fb037a (patch) | |
tree | 9e524395866f8889fd1d1beac166fa6276b72183 | |
parent | Print strerror, not just the filename, if opening the inplace file fails. (diff) | |
download | wireguard-openbsd-2028362c9c0a99fcddf6b4f062fdac01a4fb037a.tar.xz wireguard-openbsd-2028362c9c0a99fcddf6b4f062fdac01a4fb037a.zip |
revert privious commit
-rw-r--r-- | sys/dev/mii/ipgphy.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/mii/ipgphy.c b/sys/dev/mii/ipgphy.c index 5111ed1180d..78643df0b75 100644 --- a/sys/dev/mii/ipgphy.c +++ b/sys/dev/mii/ipgphy.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ipgphy.c,v 1.17 2015/07/19 04:59:39 yuo Exp $ */ +/* $OpenBSD: ipgphy.c,v 1.18 2015/07/19 06:14:37 yuo Exp $ */ /*- * Copyright (c) 2006, Pyun YongHyeon <yongari@FreeBSD.org> @@ -342,7 +342,7 @@ ipgphy_status(struct mii_softc *sc) if (IFM_SUBTYPE(mii->mii_media_active) == IFM_1000_T) { if (PHY_READ(sc, IPGPHY_MII_1000SR) & - IPGPHY_1000SR_MMASTER) + IPGPHY_1000SR_MASTER) mii->mii_media_active |= IFM_ETH_MASTER; } } else |