summaryrefslogtreecommitdiff
path: root/sys/dev/mii/ukphy.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/ukphy.c
parent7b2c79b5895287d37f0c4e3adfc396eb7a6c03fb (diff)
First round of __P removal in sys
Diffstat (limited to 'sys/dev/mii/ukphy.c')
-rw-r--r--sys/dev/mii/ukphy.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/mii/ukphy.c b/sys/dev/mii/ukphy.c
index 5652a8412e0..6f019a1cabd 100644
--- a/sys/dev/mii/ukphy.c
+++ b/sys/dev/mii/ukphy.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ukphy.c,v 1.9 2001/06/08 02:16:41 nate Exp $ */
+/* $OpenBSD: ukphy.c,v 1.10 2002/03/14 01:26:58 millert Exp $ */
/* $NetBSD: ukphy.c,v 1.9 2000/02/02 23:34:57 thorpej Exp $ */
/*-
@@ -85,8 +85,8 @@
#include <dev/mii/mii.h>
#include <dev/mii/miivar.h>
-int ukphymatch __P((struct device *, void *, void *));
-void ukphyattach __P((struct device *, struct device *, void *));
+int ukphymatch(struct device *, void *, void *);
+void ukphyattach(struct device *, struct device *, void *);
struct cfattach ukphy_ca = {
sizeof(struct mii_softc), ukphymatch, ukphyattach, mii_phy_detach,
@@ -97,7 +97,7 @@ struct cfdriver ukphy_cd = {
NULL, "ukphy", DV_DULL
};
-int ukphy_service __P((struct mii_softc *, struct mii_data *, int));
+int ukphy_service(struct mii_softc *, struct mii_data *, int);
int
ukphymatch(parent, match, aux)