diff options
| author | Alfred Perlstein <alfred@FreeBSD.org> | 2002-03-20 02:08:01 +0000 |
|---|---|---|
| committer | Alfred Perlstein <alfred@FreeBSD.org> | 2002-03-20 02:08:01 +0000 |
| commit | e51a25f8505c7f9c6684c928bb59b0bda2fc039b (patch) | |
| tree | 13b2f09af75205c81c286aaf60527ae3de623e14 /sys/dev/ex/if_ex.c | |
| parent | c605e9e62f94150fea168cf43328076ea7789885 (diff) | |
Notes
Diffstat (limited to 'sys/dev/ex/if_ex.c')
| -rw-r--r-- | sys/dev/ex/if_ex.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/sys/dev/ex/if_ex.c b/sys/dev/ex/if_ex.c index 2a3dcfdd4e71..f457a40457de 100644 --- a/sys/dev/ex/if_ex.c +++ b/sys/dev/ex/if_ex.c @@ -91,21 +91,21 @@ u_char plus_ee2irqmap[] = { 3, 4, 5, 7, 9, 10, 11, 12 }; /* Network Interface Functions */ -static void ex_init __P((void *)); -static void ex_start __P((struct ifnet *)); -static int ex_ioctl __P((struct ifnet *, u_long, caddr_t)); -static void ex_watchdog __P((struct ifnet *)); +static void ex_init (void *); +static void ex_start (struct ifnet *); +static int ex_ioctl (struct ifnet *, u_long, caddr_t); +static void ex_watchdog (struct ifnet *); /* ifmedia Functions */ -static int ex_ifmedia_upd __P((struct ifnet *)); -static void ex_ifmedia_sts __P((struct ifnet *, struct ifmediareq *)); +static int ex_ifmedia_upd (struct ifnet *); +static void ex_ifmedia_sts (struct ifnet *, struct ifmediareq *); -static int ex_get_media __P((u_int32_t iobase)); +static int ex_get_media (u_int32_t iobase); -static void ex_reset __P((struct ex_softc *)); +static void ex_reset (struct ex_softc *); -static void ex_tx_intr __P((struct ex_softc *)); -static void ex_rx_intr __P((struct ex_softc *)); +static void ex_tx_intr (struct ex_softc *); +static void ex_rx_intr (struct ex_softc *); int look_for_card (u_int32_t iobase) |
