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/ic/dptvar.h | |
parent | 7b2c79b5895287d37f0c4e3adfc396eb7a6c03fb (diff) |
First round of __P removal in sys
Diffstat (limited to 'sys/dev/ic/dptvar.h')
-rw-r--r-- | sys/dev/ic/dptvar.h | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/sys/dev/ic/dptvar.h b/sys/dev/ic/dptvar.h index bb2e9c122a1..6e42f0f6b8c 100644 --- a/sys/dev/ic/dptvar.h +++ b/sys/dev/ic/dptvar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: dptvar.h,v 1.1 1999/11/30 07:55:56 cmetz Exp $ */ +/* $OpenBSD: dptvar.h,v 1.2 2002/03/14 01:26:54 millert Exp $ */ /* $NetBSD: dptvar.h,v 1.5 1999/10/23 16:26:32 ad Exp $ */ /* @@ -98,30 +98,30 @@ struct dpt_softc { #endif /* __NetBSD__ */ }; -int dpt_intr __P((void *)); -int dpt_readcfg __P((struct dpt_softc *)); -void dpt_init __P((struct dpt_softc *, const char *)); -void dpt_shutdown __P((void *)); -void dpt_timeout __P((void *)); -void dpt_minphys __P((struct buf *)); +int dpt_intr(void *); +int dpt_readcfg(struct dpt_softc *); +void dpt_init(struct dpt_softc *, const char *); +void dpt_shutdown(void *); +void dpt_timeout(void *); +void dpt_minphys(struct buf *); #ifdef __NetBSD__ -int dpt_scsi_cmd __P((struct scsipi_xfer *)); +int dpt_scsi_cmd(struct scsipi_xfer *); #endif /* __NetBSD__ */ #ifdef __OpenBSD__ -int dpt_scsi_cmd __P((struct scsi_xfer *)); +int dpt_scsi_cmd(struct scsi_xfer *); #endif /* __OpenBSD__ */ -int dpt_wait __P((struct dpt_softc *, u_int8_t, u_int8_t, int)); -int dpt_poll __P((struct dpt_softc *, struct dpt_ccb *)); -int dpt_cmd __P((struct dpt_softc *, struct eata_cp *, u_int32_t, int, int)); -void dpt_hba_inquire __P((struct dpt_softc *, struct eata_inquiry_data **)); -void dpt_reset_ccb __P((struct dpt_softc *, struct dpt_ccb *)); -void dpt_free_ccb __P((struct dpt_softc *, struct dpt_ccb *)); -void dpt_done_ccb __P((struct dpt_softc *, struct dpt_ccb *)); -int dpt_init_ccb __P((struct dpt_softc *, struct dpt_ccb *)); -int dpt_create_ccbs __P((struct dpt_softc *, struct dpt_ccb *, int)); -struct dpt_ccb *dpt_alloc_ccb __P((struct dpt_softc *, int)); +int dpt_wait(struct dpt_softc *, u_int8_t, u_int8_t, int); +int dpt_poll(struct dpt_softc *, struct dpt_ccb *); +int dpt_cmd(struct dpt_softc *, struct eata_cp *, u_int32_t, int, int); +void dpt_hba_inquire(struct dpt_softc *, struct eata_inquiry_data **); +void dpt_reset_ccb(struct dpt_softc *, struct dpt_ccb *); +void dpt_free_ccb(struct dpt_softc *, struct dpt_ccb *); +void dpt_done_ccb(struct dpt_softc *, struct dpt_ccb *); +int dpt_init_ccb(struct dpt_softc *, struct dpt_ccb *); +int dpt_create_ccbs(struct dpt_softc *, struct dpt_ccb *, int); +struct dpt_ccb *dpt_alloc_ccb(struct dpt_softc *, int); #ifdef DEBUG -void dpt_dump_sp __P((struct eata_sp *)); +void dpt_dump_sp(struct eata_sp *); #endif #endif /* _KERNEL */ |