diff options
author | alfred <alfred@FreeBSD.org> | 2002-03-20 02:08:01 +0000 |
---|---|---|
committer | alfred <alfred@FreeBSD.org> | 2002-03-20 02:08:01 +0000 |
commit | 3264aec746947db8598130cb0ac382cf0b2a10cf (patch) | |
tree | 13b2f09af75205c81c286aaf60527ae3de623e14 /sys/dev/mii/xmphy.c | |
parent | e8f7a49843febbd1d96e06f28e56160c942029dd (diff) | |
download | FreeBSD-src-3264aec746947db8598130cb0ac382cf0b2a10cf.zip FreeBSD-src-3264aec746947db8598130cb0ac382cf0b2a10cf.tar.gz |
Remove __P.
Diffstat (limited to 'sys/dev/mii/xmphy.c')
-rw-r--r-- | sys/dev/mii/xmphy.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/sys/dev/mii/xmphy.c b/sys/dev/mii/xmphy.c index c8f0e08..ad1e34c 100644 --- a/sys/dev/mii/xmphy.c +++ b/sys/dev/mii/xmphy.c @@ -62,9 +62,9 @@ static const char rcsid[] = "$FreeBSD$"; #endif -static int xmphy_probe __P((device_t)); -static int xmphy_attach __P((device_t)); -static int xmphy_detach __P((device_t)); +static int xmphy_probe (device_t); +static int xmphy_attach (device_t); +static int xmphy_detach (device_t); static device_method_t xmphy_methods[] = { /* device interface */ @@ -85,10 +85,10 @@ static driver_t xmphy_driver = { DRIVER_MODULE(xmphy, miibus, xmphy_driver, xmphy_devclass, 0, 0); -static int xmphy_service __P((struct mii_softc *, struct mii_data *, int)); -static void xmphy_status __P((struct mii_softc *)); -static int xmphy_mii_phy_auto __P((struct mii_softc *, int)); -extern void mii_phy_auto_timeout __P((void *)); +static int xmphy_service(struct mii_softc *, struct mii_data *, int); +static void xmphy_status(struct mii_softc *); +static int xmphy_mii_phy_auto(struct mii_softc *, int); +extern void mii_phy_auto_timeout(void *); static int xmphy_probe(dev) device_t dev; |