summaryrefslogtreecommitdiff
path: root/sys/dev/mii/nsphyter.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/nsphyter.c
parent7b2c79b5895287d37f0c4e3adfc396eb7a6c03fb (diff)
First round of __P removal in sys
Diffstat (limited to 'sys/dev/mii/nsphyter.c')
-rw-r--r--sys/dev/mii/nsphyter.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/dev/mii/nsphyter.c b/sys/dev/mii/nsphyter.c
index 47cb7fe246e..57d533a466a 100644
--- a/sys/dev/mii/nsphyter.c
+++ b/sys/dev/mii/nsphyter.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: nsphyter.c,v 1.4 2001/04/14 18:50:17 jason Exp $ */
+/* $OpenBSD: nsphyter.c,v 1.5 2002/03/14 01:26:58 millert Exp $ */
/* $NetBSD: nsphyter.c,v 1.5 2000/02/02 23:34:57 thorpej Exp $ */
/*-
@@ -89,8 +89,8 @@
#include <dev/mii/nsphyterreg.h>
-int nsphytermatch __P((struct device *, void *, void *));
-void nsphyterattach __P((struct device *, struct device *, void *));
+int nsphytermatch(struct device *, void *, void *);
+void nsphyterattach(struct device *, struct device *, void *);
struct cfattach nsphyter_ca = {
sizeof(struct mii_softc), nsphytermatch, nsphyterattach,
@@ -101,8 +101,8 @@ struct cfdriver nsphyter_cd = {
NULL, "nsphyter", DV_DULL
};
-int nsphyter_service __P((struct mii_softc *, struct mii_data *, int));
-void nsphyter_status __P((struct mii_softc *));
+int nsphyter_service(struct mii_softc *, struct mii_data *, int);
+void nsphyter_status(struct mii_softc *);
int
nsphytermatch(parent, match, aux)