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/isadma.c | |
parent | 7b2c79b5895287d37f0c4e3adfc396eb7a6c03fb (diff) |
First round of __P removal in sys
Diffstat (limited to 'sys/dev/isa/isadma.c')
-rw-r--r-- | sys/dev/isa/isadma.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/dev/isa/isadma.c b/sys/dev/isa/isadma.c index f27817e64be..219909fb340 100644 --- a/sys/dev/isa/isadma.c +++ b/sys/dev/isa/isadma.c @@ -1,4 +1,4 @@ -/* $OpenBSD: isadma.c,v 1.25 2001/11/06 19:53:19 miod Exp $ */ +/* $OpenBSD: isadma.c,v 1.26 2002/03/14 01:26:56 millert Exp $ */ /* $NetBSD: isadma.c,v 1.32 1997/09/05 01:48:33 thorpej Exp $ */ /*- @@ -90,8 +90,8 @@ static u_int8_t dmamode[4] = { DMA37MD_WRITE | DMA37MD_SINGLE | DMA37MD_LOOP }; -int isadmamatch __P((struct device *, void *, void *)); -void isadmaattach __P((struct device *, struct device *, void *)); +int isadmamatch(struct device *, void *, void *); +void isadmaattach(struct device *, struct device *, void *); struct cfattach isadma_ca = { sizeof(struct device), isadmamatch, isadmaattach @@ -138,8 +138,8 @@ isadmaattach(parent, self, aux) printf("\n"); } -static inline void isa_dmaunmask __P((struct isa_softc *, int)); -static inline void isa_dmamask __P((struct isa_softc *, int)); +static inline void isa_dmaunmask(struct isa_softc *, int); +static inline void isa_dmamask(struct isa_softc *, int); static inline void isa_dmaunmask(sc, chan) |