aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/mii/amphy.c
diff options
context:
space:
mode:
authorAlfred Perlstein <alfred@FreeBSD.org>2002-03-20 02:08:01 +0000
committerAlfred Perlstein <alfred@FreeBSD.org>2002-03-20 02:08:01 +0000
commite51a25f8505c7f9c6684c928bb59b0bda2fc039b (patch)
tree13b2f09af75205c81c286aaf60527ae3de623e14 /sys/dev/mii/amphy.c
parentc605e9e62f94150fea168cf43328076ea7789885 (diff)
downloadsrc-e51a25f8505c7f9c6684c928bb59b0bda2fc039b.tar.gz
src-e51a25f8505c7f9c6684c928bb59b0bda2fc039b.zip
Remove __P.
Notes
Notes: svn path=/head/; revision=92739
Diffstat (limited to 'sys/dev/mii/amphy.c')
-rw-r--r--sys/dev/mii/amphy.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/dev/mii/amphy.c b/sys/dev/mii/amphy.c
index 8c78cf07af28..caba3da53f8d 100644
--- a/sys/dev/mii/amphy.c
+++ b/sys/dev/mii/amphy.c
@@ -60,9 +60,9 @@ static const char rcsid[] =
"$FreeBSD$";
#endif
-static int amphy_probe __P((device_t));
-static int amphy_attach __P((device_t));
-static int amphy_detach __P((device_t));
+static int amphy_probe (device_t);
+static int amphy_attach (device_t);
+static int amphy_detach (device_t);
static device_method_t amphy_methods[] = {
/* device interface */
@@ -83,8 +83,8 @@ static driver_t amphy_driver = {
DRIVER_MODULE(amphy, miibus, amphy_driver, amphy_devclass, 0, 0);
-static int amphy_service __P((struct mii_softc *, struct mii_data *, int));
-static void amphy_status __P((struct mii_softc *));
+static int amphy_service(struct mii_softc *, struct mii_data *, int);
+static void amphy_status(struct mii_softc *);
static int amphy_probe(dev)
device_t dev;