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/ccd.c | |
parent | 7b2c79b5895287d37f0c4e3adfc396eb7a6c03fb (diff) |
First round of __P removal in sys
Diffstat (limited to 'sys/dev/ccd.c')
-rw-r--r-- | sys/dev/ccd.c | 38 |
1 files changed, 19 insertions, 19 deletions
diff --git a/sys/dev/ccd.c b/sys/dev/ccd.c index c958ddb8c70..94fab4e51b2 100644 --- a/sys/dev/ccd.c +++ b/sys/dev/ccd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ccd.c,v 1.46 2001/11/28 16:13:29 art Exp $ */ +/* $OpenBSD: ccd.c,v 1.47 2002/03/14 01:26:52 millert Exp $ */ /* $NetBSD: ccd.c,v 1.33 1996/05/05 04:21:14 thorpej Exp $ */ /*- @@ -169,28 +169,28 @@ struct ccdbuf { (MAKEDISKDEV(major((dev)), ccdunit((dev)), RAW_PART)) /* called by main() at boot time */ -void ccdattach __P((int)); +void ccdattach(int); /* called by biodone() at interrupt time */ -void ccdiodone __P((struct buf *)); -int ccdsize __P((dev_t)); - -void ccdstart __P((struct ccd_softc *, struct buf *)); -void ccdinterleave __P((struct ccd_softc *, int)); -void ccdintr __P((struct ccd_softc *, struct buf *)); -int ccdinit __P((struct ccddevice *, char **, struct proc *)); -int ccdlookup __P((char *, struct proc *p, struct vnode **)); -long ccdbuffer __P((struct ccd_softc *, struct buf *, daddr_t, caddr_t, - long, struct ccdbuf **, int)); -void ccdgetdisklabel __P((dev_t)); -void ccdmakedisklabel __P((struct ccd_softc *)); -int ccdlock __P((struct ccd_softc *)); -void ccdunlock __P((struct ccd_softc *)); -INLINE struct ccdbuf *getccdbuf __P((void)); -INLINE void putccdbuf __P((struct ccdbuf *)); +void ccdiodone(struct buf *); +int ccdsize(dev_t); + +void ccdstart(struct ccd_softc *, struct buf *); +void ccdinterleave(struct ccd_softc *, int); +void ccdintr(struct ccd_softc *, struct buf *); +int ccdinit(struct ccddevice *, char **, struct proc *); +int ccdlookup(char *, struct proc *p, struct vnode **); +long ccdbuffer(struct ccd_softc *, struct buf *, daddr_t, caddr_t, + long, struct ccdbuf **, int); +void ccdgetdisklabel(dev_t); +void ccdmakedisklabel(struct ccd_softc *); +int ccdlock(struct ccd_softc *); +void ccdunlock(struct ccd_softc *); +INLINE struct ccdbuf *getccdbuf(void); +INLINE void putccdbuf(struct ccdbuf *); #ifdef DEBUG -void printiinfo __P((struct ccdiinfo *)); +void printiinfo(struct ccdiinfo *); #endif /* Non-private for the benefit of libkvm. */ |