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/isa/wdc_isa.c | |
parent | 7b2c79b5895287d37f0c4e3adfc396eb7a6c03fb (diff) |
First round of __P removal in sys
Diffstat (limited to 'sys/dev/isa/wdc_isa.c')
-rw-r--r-- | sys/dev/isa/wdc_isa.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/sys/dev/isa/wdc_isa.c b/sys/dev/isa/wdc_isa.c index 41781ef665e..fce6ec30fd8 100644 --- a/sys/dev/isa/wdc_isa.c +++ b/sys/dev/isa/wdc_isa.c @@ -1,4 +1,4 @@ -/* $OpenBSD: wdc_isa.c,v 1.7 2001/03/25 13:11:58 csapuntz Exp $ */ +/* $OpenBSD: wdc_isa.c,v 1.8 2002/03/14 01:26:56 millert Exp $ */ /* $NetBSD: wdc_isa.c,v 1.15 1999/05/19 14:41:25 bouyer Exp $ */ /*- @@ -78,21 +78,21 @@ struct wdc_isa_softc { }; #ifndef __OpenBSD__ -int wdc_isa_probe __P((struct device *, struct cfdata *, void *)); +int wdc_isa_probe(struct device *, struct cfdata *, void *); #else -int wdc_isa_probe __P((struct device *, void *, void *)); +int wdc_isa_probe(struct device *, void *, void *); #endif -void wdc_isa_attach __P((struct device *, struct device *, void *)); +void wdc_isa_attach(struct device *, struct device *, void *); struct cfattach wdc_isa_ca = { sizeof(struct wdc_isa_softc), wdc_isa_probe, wdc_isa_attach }; #if NISADMA > 0 -static void wdc_isa_dma_setup __P((struct wdc_isa_softc *)); -static int wdc_isa_dma_init __P((void*, int, int, void *, size_t, int)); -static void wdc_isa_dma_start __P((void*, int, int)); -static int wdc_isa_dma_finish __P((void*, int, int)); +static void wdc_isa_dma_setup(struct wdc_isa_softc *); +static int wdc_isa_dma_init(void*, int, int, void *, size_t, int); +static void wdc_isa_dma_start(void*, int, int); +static int wdc_isa_dma_finish(void*, int, int); #endif /* NISADMA > 0 */ int |