diff options
author | Kenneth R Westerback <krw@cvs.openbsd.org> | 2006-12-31 15:04:34 +0000 |
---|---|---|
committer | Kenneth R Westerback <krw@cvs.openbsd.org> | 2006-12-31 15:04:34 +0000 |
commit | 6de76f745ab68a6b60da937911f01c0c9094cb4c (patch) | |
tree | 4654917685ff15c43ce0ca8d60ef9bcd6982b830 /sys/dev/mii/xmphy.c | |
parent | 01e18121d8c6da41d79b5c41839a3aea372ff1c9 (diff) |
Bring last few phys into line by calling their XXX_status() functions
through mii_phy_status() rather than directly. No functional change.
from brad@ ok mglocker@
Diffstat (limited to 'sys/dev/mii/xmphy.c')
-rw-r--r-- | sys/dev/mii/xmphy.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/mii/xmphy.c b/sys/dev/mii/xmphy.c index 797da525611..c54a18222a7 100644 --- a/sys/dev/mii/xmphy.c +++ b/sys/dev/mii/xmphy.c @@ -1,4 +1,4 @@ -/* $OpenBSD: xmphy.c,v 1.16 2006/10/07 23:44:51 brad Exp $ */ +/* $OpenBSD: xmphy.c,v 1.17 2006/12/31 15:04:33 krw Exp $ */ /* * Copyright (c) 2000 @@ -232,7 +232,7 @@ xmphy_service(struct mii_softc *sc, struct mii_data *mii, int cmd) } /* Update the media status. */ - xmphy_status(sc); + mii_phy_status(sc); /* Callback if something changed. */ mii_phy_update(sc, cmd); |