diff options
author | alfred <alfred@FreeBSD.org> | 2002-03-20 02:08:01 +0000 |
---|---|---|
committer | alfred <alfred@FreeBSD.org> | 2002-03-20 02:08:01 +0000 |
commit | 3264aec746947db8598130cb0ac382cf0b2a10cf (patch) | |
tree | 13b2f09af75205c81c286aaf60527ae3de623e14 /sys/dev/ed/if_ed_cbus.c | |
parent | e8f7a49843febbd1d96e06f28e56160c942029dd (diff) | |
download | FreeBSD-src-3264aec746947db8598130cb0ac382cf0b2a10cf.zip FreeBSD-src-3264aec746947db8598130cb0ac382cf0b2a10cf.tar.gz |
Remove __P.
Diffstat (limited to 'sys/dev/ed/if_ed_cbus.c')
-rw-r--r-- | sys/dev/ed/if_ed_cbus.c | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/sys/dev/ed/if_ed_cbus.c b/sys/dev/ed/if_ed_cbus.c index 1ea4af8..307323f 100644 --- a/sys/dev/ed/if_ed_cbus.c +++ b/sys/dev/ed/if_ed_cbus.c @@ -54,25 +54,25 @@ #include <dev/ed/if_edreg.h> #include <dev/ed/if_ed98.h> -static int ed98_alloc_port __P((device_t, int)); -static int ed98_alloc_memory __P((device_t, int)); -static int ed_pio_testmem __P((struct ed_softc *, int, int, int)); -static int ed_probe_SIC98 __P((device_t, int, int)); -static int ed_probe_CNET98 __P((device_t, int, int)); -static int ed_probe_CNET98EL __P((device_t, int, int)); -static int ed_probe_NEC77 __P((device_t, int, int)); -static int ed_probe_NW98X __P((device_t, int, int)); -static int ed_probe_SB98 __P((device_t, int, int)); -static int ed_probe_EZ98 __P((device_t, int, int)); -static int ed98_probe_Novell __P((device_t, int, int)); -static int ed98_probe_generic8390 __P((struct ed_softc *)); -static void ed_reset_CNET98 __P((struct ed_softc *, int)); -static void ed_winsel_CNET98 __P((struct ed_softc *, u_short)); -static void ed_get_SB98 __P((struct ed_softc *)); +static int ed98_alloc_port (device_t, int); +static int ed98_alloc_memory (device_t, int); +static int ed_pio_testmem (struct ed_softc *, int, int, int); +static int ed_probe_SIC98 (device_t, int, int); +static int ed_probe_CNET98 (device_t, int, int); +static int ed_probe_CNET98EL (device_t, int, int); +static int ed_probe_NEC77 (device_t, int, int); +static int ed_probe_NW98X (device_t, int, int); +static int ed_probe_SB98 (device_t, int, int); +static int ed_probe_EZ98 (device_t, int, int); +static int ed98_probe_Novell (device_t, int, int); +static int ed98_probe_generic8390 (struct ed_softc *); +static void ed_reset_CNET98 (struct ed_softc *, int); +static void ed_winsel_CNET98 (struct ed_softc *, u_short); +static void ed_get_SB98 (struct ed_softc *); #endif -static int ed_isa_probe __P((device_t)); -static int ed_isa_attach __P((device_t)); +static int ed_isa_probe (device_t); +static int ed_isa_attach (device_t); static struct isa_pnp_id ed_ids[] = { #ifdef PC98 |