diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2003-10-26 15:04:33 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2003-10-26 15:04:33 +0000 |
commit | d7f376e6891f37ab941afe8e6aafa8a5aa128fd7 (patch) | |
tree | da64b6a493219bc18717bfc16e6c2665af0f810a /sys/arch/macppc | |
parent | 0628bf1b4ae49cad0925664eb9524d4823a48d9d (diff) |
Unbrek after recent wdc changes.
Diffstat (limited to 'sys/arch/macppc')
-rw-r--r-- | sys/arch/macppc/dev/wdc_obio.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/macppc/dev/wdc_obio.c b/sys/arch/macppc/dev/wdc_obio.c index e8baabac607..5147f5fdbe9 100644 --- a/sys/arch/macppc/dev/wdc_obio.c +++ b/sys/arch/macppc/dev/wdc_obio.c @@ -1,4 +1,4 @@ -/* $OpenBSD: wdc_obio.c,v 1.16 2003/10/18 16:26:06 drahn Exp $ */ +/* $OpenBSD: wdc_obio.c,v 1.17 2003/10/26 15:04:32 miod Exp $ */ /* $NetBSD: wdc_obio.c,v 1.15 2001/07/25 20:26:33 bouyer Exp $ */ /*- @@ -103,7 +103,7 @@ struct cfattach wdc_obio_ca = { int wdc_obio_dma_init(void *, int, int, void *, size_t, int); void wdc_obio_dma_start(void *, int, int); -int wdc_obio_dma_finish(void *, int, int, int); +int wdc_obio_dma_finish(void *, int, int); void wdc_obio_adjust_timing(struct channel_softc *); void wdc_obio_ata4_adjust_timing(struct channel_softc *); void wdc_obio_ata6_adjust_timing(struct channel_softc *); @@ -564,7 +564,7 @@ wdc_obio_dma_start(void *v, int channel, int drive) } int -wdc_obio_dma_finish(void *v, int channel, int drive, int force) +wdc_obio_dma_finish(void *v, int channel, int drive) { struct wdc_obio_softc *sc = v; |