summaryrefslogtreecommitdiff
path: root/sys/dev/mii/lxtphy.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/lxtphy.c
parent7b2c79b5895287d37f0c4e3adfc396eb7a6c03fb (diff)
First round of __P removal in sys
Diffstat (limited to 'sys/dev/mii/lxtphy.c')
-rw-r--r--sys/dev/mii/lxtphy.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/sys/dev/mii/lxtphy.c b/sys/dev/mii/lxtphy.c
index 4713550e802..2b6cd17b330 100644
--- a/sys/dev/mii/lxtphy.c
+++ b/sys/dev/mii/lxtphy.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: lxtphy.c,v 1.7 2001/12/15 02:41:33 deraadt Exp $ */
+/* $OpenBSD: lxtphy.c,v 1.8 2002/03/14 01:26:57 millert Exp $ */
/* $NetBSD: lxtphy.c,v 1.19 2000/02/02 23:34:57 thorpej Exp $ */
/*-
@@ -89,8 +89,8 @@
#include <dev/mii/lxtphyreg.h>
-int lxtphymatch __P((struct device *, void *, void *));
-void lxtphyattach __P((struct device *, struct device *, void *));
+int lxtphymatch(struct device *, void *, void *);
+void lxtphyattach(struct device *, struct device *, void *);
struct cfattach lxtphy_ca = {
sizeof(struct mii_softc), lxtphymatch, lxtphyattach, mii_phy_detach,
@@ -101,9 +101,9 @@ struct cfdriver lxtphy_cd = {
NULL, "lxtphy", DV_DULL
};
-int lxtphy_service __P((struct mii_softc *, struct mii_data *, int));
-void lxtphy_status __P((struct mii_softc *));
-void lxtphy_reset __P((struct mii_softc *));
+int lxtphy_service(struct mii_softc *, struct mii_data *, int);
+void lxtphy_status(struct mii_softc *);
+void lxtphy_reset(struct mii_softc *);
int
lxtphymatch(parent, match, aux)