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/aic7xxxvar.h | |
parent | 7b2c79b5895287d37f0c4e3adfc396eb7a6c03fb (diff) |
First round of __P removal in sys
Diffstat (limited to 'sys/dev/ic/aic7xxxvar.h')
-rw-r--r-- | sys/dev/ic/aic7xxxvar.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/sys/dev/ic/aic7xxxvar.h b/sys/dev/ic/aic7xxxvar.h index f02635cb74a..aac9d90e23e 100644 --- a/sys/dev/ic/aic7xxxvar.h +++ b/sys/dev/ic/aic7xxxvar.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * $FreeBSD: src/sys/dev/aic7xxx/aic7xxx.h,v 1.15 2000/01/07 23:08:18 gibbs Exp $ - * $OpenBSD: aic7xxxvar.h,v 1.13 2000/07/03 22:18:36 smurph Exp $ + * $OpenBSD: aic7xxxvar.h,v 1.14 2002/03/14 01:26:54 millert Exp $ */ #ifndef _AIC7XXXVAR_H_ @@ -490,7 +490,7 @@ struct ahc_softc { bus_dma_tag_t buffer_dmat; /* dmat for buffer I/O */ struct scb_data *scb_data; void *pci_data; /* for pci config read/write */ - int (*pci_intr_func) __P((struct ahc_softc *)); /* for pci error interrupts */ + int (*pci_intr_func)(struct ahc_softc *); /* for pci error interrupts */ LIST_HEAD(, scsi_xfer) sc_xxxq; /* XXX software request queue */ struct scsi_xfer *sc_xxxqlast; /* last entry in queue */ @@ -619,16 +619,16 @@ extern int ahc_debug; /* Initialized in i386/scsi/aic7xxx.c */ #define ahc_name(ahc) (ahc)->sc_dev.dv_xname -void ahc_construct __P((struct ahc_softc *ahc, bus_space_tag_t iot, +void ahc_construct(struct ahc_softc *ahc, bus_space_tag_t iot, bus_space_handle_t ioh, ahc_chip chip, ahc_flag flags, - ahc_feature features, u_char channel)); -int ahc_probe_scbs __P((struct ahc_softc *ahc)); -void ahc_free __P((struct ahc_softc *)); -int ahc_init __P((struct ahc_softc *)); -int ahc_attach __P((struct ahc_softc *)); -int ahc_intr __P((void *arg)); -int ahc_reset __P((struct ahc_softc *ahc)); -void ahc_xxx_reset __P((char *devname, bus_space_tag_t iot, bus_space_handle_t ioh)); + ahc_feature features, u_char channel); +int ahc_probe_scbs(struct ahc_softc *ahc); +void ahc_free(struct ahc_softc *); +int ahc_init(struct ahc_softc *); +int ahc_attach(struct ahc_softc *); +int ahc_intr(void *arg); +int ahc_reset(struct ahc_softc *ahc); +void ahc_xxx_reset(char *devname, bus_space_tag_t iot, bus_space_handle_t ioh); #define ahc_isa_reset ahc_xxx_reset #define ahc_eisa_reset ahc_xxx_reset |