diff options
Diffstat (limited to 'sys/dev/mii/exphy.c')
-rw-r--r-- | sys/dev/mii/exphy.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/dev/mii/exphy.c b/sys/dev/mii/exphy.c index a1582b56d0f..09b1ae3ca12 100644 --- a/sys/dev/mii/exphy.c +++ b/sys/dev/mii/exphy.c @@ -1,4 +1,4 @@ -/* $OpenBSD: exphy.c,v 1.10 2001/07/17 01:15:22 nate Exp $ */ +/* $OpenBSD: exphy.c,v 1.11 2002/03/14 01:26:57 millert Exp $ */ /* $NetBSD: exphy.c,v 1.23 2000/02/02 23:34:56 thorpej Exp $ */ /*- @@ -85,8 +85,8 @@ #include <dev/mii/miivar.h> #include <dev/mii/miidevs.h> -int exphymatch __P((struct device *, void *, void *)); -void exphyattach __P((struct device *, struct device *, void *)); +int exphymatch(struct device *, void *, void *); +void exphyattach(struct device *, struct device *, void *); struct cfattach exphy_ca = { sizeof(struct mii_softc), exphymatch, exphyattach, mii_phy_detach, @@ -97,8 +97,8 @@ struct cfdriver exphy_cd = { NULL, "exphy", DV_DULL }; -int exphy_service __P((struct mii_softc *, struct mii_data *, int)); -void exphy_reset __P((struct mii_softc *)); +int exphy_service(struct mii_softc *, struct mii_data *, int); +void exphy_reset(struct mii_softc *); int exphymatch(parent, match, aux) |