summaryrefslogtreecommitdiff
path: root/sys/dev/ic/smc91cxx.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/ic/smc91cxx.c
parent7b2c79b5895287d37f0c4e3adfc396eb7a6c03fb (diff)
First round of __P removal in sys
Diffstat (limited to 'sys/dev/ic/smc91cxx.c')
-rw-r--r--sys/dev/ic/smc91cxx.c26
1 files changed, 13 insertions, 13 deletions
diff --git a/sys/dev/ic/smc91cxx.c b/sys/dev/ic/smc91cxx.c
index d2926830318..cd164a12be8 100644
--- a/sys/dev/ic/smc91cxx.c
+++ b/sys/dev/ic/smc91cxx.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: smc91cxx.c,v 1.13 2001/07/08 23:38:06 fgsch Exp $ */
+/* $OpenBSD: smc91cxx.c,v 1.14 2002/03/14 01:26:55 millert Exp $ */
/* $NetBSD: smc91cxx.c,v 1.11 1998/08/08 23:51:41 mycroft Exp $ */
/*-
@@ -164,22 +164,22 @@ struct cfdriver sm_cd = {
NULL, "sm", DV_IFNET
};
-int smc91cxx_mediachange __P((struct ifnet *));
-void smc91cxx_mediastatus __P((struct ifnet *, struct ifmediareq *));
+int smc91cxx_mediachange(struct ifnet *);
+void smc91cxx_mediastatus(struct ifnet *, struct ifmediareq *);
-int smc91cxx_set_media __P((struct smc91cxx_softc *, int));
+int smc91cxx_set_media(struct smc91cxx_softc *, int);
-void smc91cxx_read __P((struct smc91cxx_softc *));
-void smc91cxx_reset __P((struct smc91cxx_softc *));
-void smc91cxx_start __P((struct ifnet *));
-void smc91cxx_resume __P((struct smc91cxx_softc *));
-void smc91cxx_watchdog __P((struct ifnet *));
-int smc91cxx_ioctl __P((struct ifnet *, u_long, caddr_t));
+void smc91cxx_read(struct smc91cxx_softc *);
+void smc91cxx_reset(struct smc91cxx_softc *);
+void smc91cxx_start(struct ifnet *);
+void smc91cxx_resume(struct smc91cxx_softc *);
+void smc91cxx_watchdog(struct ifnet *);
+int smc91cxx_ioctl(struct ifnet *, u_long, caddr_t);
-int smc91cxx_enable __P((struct smc91cxx_softc *));
-void smc91cxx_disable __P((struct smc91cxx_softc *));
+int smc91cxx_enable(struct smc91cxx_softc *);
+void smc91cxx_disable(struct smc91cxx_softc *);
-static __inline int ether_cmp __P((void *, void *));
+static __inline int ether_cmp(void *, void *);
static __inline int
ether_cmp(va, vb)
void *va, *vb;