diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2002-03-14 01:27:20 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2002-03-14 01:27:20 +0000 |
commit | 8327d0774703553db5e1a41a04bfdf4b1797c2ce (patch) | |
tree | ac9a52bace179e17769651fb9f805070d78abe5f /sys/dev/ic/smc91cxx.c | |
parent | 7b2c79b5895287d37f0c4e3adfc396eb7a6c03fb (diff) |
First round of __P removal in sys
Diffstat (limited to 'sys/dev/ic/smc91cxx.c')
-rw-r--r-- | sys/dev/ic/smc91cxx.c | 26 |
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; |