summaryrefslogtreecommitdiff
path: root/sys/dev/mii/tqphy.c
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2002-03-14 01:27:20 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2002-03-14 01:27:20 +0000
commit8327d0774703553db5e1a41a04bfdf4b1797c2ce (patch)
treeac9a52bace179e17769651fb9f805070d78abe5f /sys/dev/mii/tqphy.c
parent7b2c79b5895287d37f0c4e3adfc396eb7a6c03fb (diff)
First round of __P removal in sys
Diffstat (limited to 'sys/dev/mii/tqphy.c')
-rw-r--r--sys/dev/mii/tqphy.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/sys/dev/mii/tqphy.c b/sys/dev/mii/tqphy.c
index 7192042d13a..09c74634410 100644
--- a/sys/dev/mii/tqphy.c
+++ b/sys/dev/mii/tqphy.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: tqphy.c,v 1.3 2000/08/26 20:04:18 nate Exp $ */
+/* $OpenBSD: tqphy.c,v 1.4 2002/03/14 01:26:58 millert Exp $ */
/* $NetBSD: tqphy.c,v 1.9 2000/02/02 23:34:57 thorpej Exp $ */
/*
@@ -89,9 +89,9 @@
#include <dev/mii/tqphyreg.h>
-int tqphymatch __P((struct device *, void *, void *));
-void tqphyattach __P((struct device *, struct device *, void *));
-int tqphydetach __P((struct device *, int));
+int tqphymatch(struct device *, void *, void *);
+void tqphyattach(struct device *, struct device *, void *);
+int tqphydetach(struct device *, int);
struct cfattach tqphy_ca = {
sizeof(struct mii_softc), tqphymatch, tqphyattach, mii_phy_detach,
@@ -102,8 +102,8 @@ struct cfdriver tqphy_cd = {
NULL, "tqphy", DV_DULL
};
-int tqphy_service __P((struct mii_softc *, struct mii_data *, int));
-void tqphy_status __P((struct mii_softc *));
+int tqphy_service(struct mii_softc *, struct mii_data *, int);
+void tqphy_status(struct mii_softc *);
int
tqphymatch(parent, match, aux)