summaryrefslogtreecommitdiff
path: root/sys/dev/mii/amphy.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/amphy.c
parent7b2c79b5895287d37f0c4e3adfc396eb7a6c03fb (diff)
First round of __P removal in sys
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 110bb0599b8..96ba9d73055 100644
--- a/sys/dev/mii/amphy.c
+++ b/sys/dev/mii/amphy.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: amphy.c,v 1.2 2000/11/20 16:22:15 jason Exp $ */
+/* $OpenBSD: amphy.c,v 1.3 2002/03/14 01:26:57 millert Exp $ */
/*
* Copyright (c) 1997, 1998, 1999
@@ -56,8 +56,8 @@
#include <dev/mii/amphyreg.h>
-int amphymatch __P((struct device *, void *, void *));
-void amphyattach __P((struct device *, struct device *, void *));
+int amphymatch(struct device *, void *, void *);
+void amphyattach(struct device *, struct device *, void *);
struct cfattach amphy_ca = {
sizeof(struct mii_softc), amphymatch, amphyattach, mii_phy_detach,
@@ -68,8 +68,8 @@ struct cfdriver amphy_cd = {
NULL, "amphy", DV_DULL
};
-int amphy_service __P((struct mii_softc *, struct mii_data *, int));
-void amphy_status __P((struct mii_softc *));
+int amphy_service(struct mii_softc *, struct mii_data *, int);
+void amphy_status(struct mii_softc *);
int
amphymatch(parent, match, aux)