diff options
author | Brad Smith <brad@cvs.openbsd.org> | 2004-12-16 03:41:59 +0000 |
---|---|---|
committer | Brad Smith <brad@cvs.openbsd.org> | 2004-12-16 03:41:59 +0000 |
commit | f9e55b13946d05a273531b6a383cd394866799f3 (patch) | |
tree | 5ce99866f5580f066854bac64f06f9ffa5c61de7 /sys/dev/mii/miivar.h | |
parent | df074f69928026794294055b7b9d20b3ff83e86f (diff) |
Make sure ifp->if_baudrate is valid when the parent's statchg
callback is made.
From NetBSD
Diffstat (limited to 'sys/dev/mii/miivar.h')
-rw-r--r-- | sys/dev/mii/miivar.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/mii/miivar.h b/sys/dev/mii/miivar.h index ac1ccf09121..3bbe6e25e64 100644 --- a/sys/dev/mii/miivar.h +++ b/sys/dev/mii/miivar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: miivar.h,v 1.21 2004/11/18 16:15:33 brad Exp $ */ +/* $OpenBSD: miivar.h,v 1.22 2004/12/16 03:41:58 brad Exp $ */ /* $NetBSD: miivar.h,v 1.17 2000/03/06 20:56:57 thorpej Exp $ */ /*- @@ -257,7 +257,7 @@ int mii_phy_tick(struct mii_softc *); void mii_phy_status(struct mii_softc *); void mii_phy_update(struct mii_softc *, int); -void mii_phy_statusmsg(struct mii_softc *); +int mii_phy_statusmsg(struct mii_softc *); void ukphy_status(struct mii_softc *); |