summaryrefslogtreecommitdiff
path: root/sys/dev/mii/sqphy.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/sqphy.c
parent7b2c79b5895287d37f0c4e3adfc396eb7a6c03fb (diff)
First round of __P removal in sys
Diffstat (limited to 'sys/dev/mii/sqphy.c')
-rw-r--r--sys/dev/mii/sqphy.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/dev/mii/sqphy.c b/sys/dev/mii/sqphy.c
index 02896f7f725..ff26e0823b3 100644
--- a/sys/dev/mii/sqphy.c
+++ b/sys/dev/mii/sqphy.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: sqphy.c,v 1.6 2001/05/30 21:41:14 deraadt Exp $ */
+/* $OpenBSD: sqphy.c,v 1.7 2002/03/14 01:26:58 millert Exp $ */
/* $NetBSD: sqphy.c,v 1.17 2000/02/02 23:34:57 thorpej Exp $ */
/*-
@@ -89,8 +89,8 @@
#include <dev/mii/sqphyreg.h>
-int sqphymatch __P((struct device *, void *, void *));
-void sqphyattach __P((struct device *, struct device *, void *));
+int sqphymatch(struct device *, void *, void *);
+void sqphyattach(struct device *, struct device *, void *);
struct cfattach sqphy_ca = {
sizeof(struct mii_softc), sqphymatch, sqphyattach, mii_phy_detach,
@@ -101,8 +101,8 @@ struct cfdriver sqphy_cd = {
NULL, "sqphy", DV_DULL
};
-int sqphy_service __P((struct mii_softc *, struct mii_data *, int));
-void sqphy_status __P((struct mii_softc *));
+int sqphy_service(struct mii_softc *, struct mii_data *, int);
+void sqphy_status(struct mii_softc *);
int
sqphymatch(parent, match, aux)