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/tdkphy.c | |
parent | e8f7a49843febbd1d96e06f28e56160c942029dd (diff) | |
download | FreeBSD-src-3264aec746947db8598130cb0ac382cf0b2a10cf.zip FreeBSD-src-3264aec746947db8598130cb0ac382cf0b2a10cf.tar.gz |
Remove __P.
Diffstat (limited to 'sys/dev/mii/tdkphy.c')
-rw-r--r-- | sys/dev/mii/tdkphy.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/dev/mii/tdkphy.c b/sys/dev/mii/tdkphy.c index 63e8505..3a98dba 100644 --- a/sys/dev/mii/tdkphy.c +++ b/sys/dev/mii/tdkphy.c @@ -69,9 +69,9 @@ static const char rcsid[] = "$Id: tdkphy.c,v 1.3 2000/10/14 06:20:56 jon Exp $"; #endif -static int tdkphy_probe __P((device_t)); -static int tdkphy_attach __P((device_t)); -static int tdkphy_detach __P((device_t)); +static int tdkphy_probe (device_t); +static int tdkphy_attach (device_t); +static int tdkphy_detach (device_t); static device_method_t tdkphy_methods[] = { /* device interface */ @@ -92,8 +92,8 @@ static driver_t tdkphy_driver = { DRIVER_MODULE(tdkphy, miibus, tdkphy_driver, tdkphy_devclass, 0, 0); -static int tdkphy_service __P((struct mii_softc *, struct mii_data *, int)); -static void tdkphy_status __P((struct mii_softc *)); +static int tdkphy_service(struct mii_softc *, struct mii_data *, int); +static void tdkphy_status(struct mii_softc *); static int tdkphy_probe(device_t dev) |