diff options
Diffstat (limited to 'sys/arch/sparc/dev/si.c')
| -rw-r--r-- | sys/arch/sparc/dev/si.c | 42 |
1 files changed, 21 insertions, 21 deletions
diff --git a/sys/arch/sparc/dev/si.c b/sys/arch/sparc/dev/si.c index 032fc2aaf8b..3b6a078287a 100644 --- a/sys/arch/sparc/dev/si.c +++ b/sys/arch/sparc/dev/si.c @@ -1,4 +1,4 @@ -/* $OpenBSD: si.c,v 1.14 2000/09/21 17:45:12 mickey Exp $ */ +/* $OpenBSD: si.c,v 1.15 2002/03/14 01:26:43 millert Exp $ */ /* $NetBSD: si.c,v 1.38 1997/08/27 11:24:20 bouyer Exp $ */ /*- @@ -201,31 +201,31 @@ int sw_options = SI_ENABLE_DMA; /* How long to wait for DMA before declaring an error. */ int si_dma_intr_timo = 500; /* ticks (sec. X 100) */ -static int si_match __P((struct device *, void *, void *)); -static void si_attach __P((struct device *, struct device *, void *)); -static int si_intr __P((void *)); -static void si_reset_adapter __P((struct ncr5380_softc *)); -static void si_minphys __P((struct buf *)); +static int si_match(struct device *, void *, void *); +static void si_attach(struct device *, struct device *, void *); +static int si_intr(void *); +static void si_reset_adapter(struct ncr5380_softc *); +static void si_minphys(struct buf *); -void si_dma_alloc __P((struct ncr5380_softc *)); -void si_dma_free __P((struct ncr5380_softc *)); -void si_dma_poll __P((struct ncr5380_softc *)); +void si_dma_alloc(struct ncr5380_softc *); +void si_dma_free(struct ncr5380_softc *); +void si_dma_poll(struct ncr5380_softc *); -void si_vme_dma_setup __P((struct ncr5380_softc *)); -void si_vme_dma_start __P((struct ncr5380_softc *)); -void si_vme_dma_eop __P((struct ncr5380_softc *)); -void si_vme_dma_stop __P((struct ncr5380_softc *)); +void si_vme_dma_setup(struct ncr5380_softc *); +void si_vme_dma_start(struct ncr5380_softc *); +void si_vme_dma_eop(struct ncr5380_softc *); +void si_vme_dma_stop(struct ncr5380_softc *); -void si_vme_intr_on __P((struct ncr5380_softc *)); -void si_vme_intr_off __P((struct ncr5380_softc *)); +void si_vme_intr_on(struct ncr5380_softc *); +void si_vme_intr_off(struct ncr5380_softc *); -void si_obio_dma_setup __P((struct ncr5380_softc *)); -void si_obio_dma_start __P((struct ncr5380_softc *)); -void si_obio_dma_eop __P((struct ncr5380_softc *)); -void si_obio_dma_stop __P((struct ncr5380_softc *)); +void si_obio_dma_setup(struct ncr5380_softc *); +void si_obio_dma_start(struct ncr5380_softc *); +void si_obio_dma_eop(struct ncr5380_softc *); +void si_obio_dma_stop(struct ncr5380_softc *); -void si_obio_intr_on __P((struct ncr5380_softc *)); -void si_obio_intr_off __P((struct ncr5380_softc *)); +void si_obio_intr_on(struct ncr5380_softc *); +void si_obio_intr_off(struct ncr5380_softc *); static struct scsi_adapter si_ops = { ncr5380_scsi_cmd, /* scsi_cmd() */ |
