summaryrefslogtreecommitdiff
path: root/sys/dev/mii/bmtphy.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/dev/mii/bmtphy.c')
-rw-r--r--sys/dev/mii/bmtphy.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/sys/dev/mii/bmtphy.c b/sys/dev/mii/bmtphy.c
index 20cabb0f392..4900812933c 100644
--- a/sys/dev/mii/bmtphy.c
+++ b/sys/dev/mii/bmtphy.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: bmtphy.c,v 1.4 2001/10/05 18:26:48 nate Exp $ */
+/* $OpenBSD: bmtphy.c,v 1.5 2002/03/14 01:26:57 millert Exp $ */
/* $NetBSD: nsphy.c,v 1.25 2000/02/02 23:34:57 thorpej Exp $ */
/*-
@@ -48,8 +48,8 @@
#include <dev/mii/bmtphyreg.h>
-int bmtphymatch __P((struct device *, void *, void *));
-void bmtphyattach __P((struct device *, struct device *, void *));
+int bmtphymatch(struct device *, void *, void *);
+void bmtphyattach(struct device *, struct device *, void *);
struct cfattach bmtphy_ca = {
sizeof(struct mii_softc), bmtphymatch, bmtphyattach, mii_phy_detach,
@@ -60,9 +60,9 @@ struct cfdriver bmtphy_cd = {
NULL, "bmtphy", DV_DULL
};
-int bmtphy_service __P((struct mii_softc *, struct mii_data *, int));
-void bmtphy_status __P((struct mii_softc *));
-void bmtphy_reset __P((struct mii_softc *));
+int bmtphy_service(struct mii_softc *, struct mii_data *, int);
+void bmtphy_status(struct mii_softc *);
+void bmtphy_reset(struct mii_softc *);
int
bmtphymatch(parent, match, aux)