diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2003-10-26 15:15:27 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2003-10-26 15:15:27 +0000 |
commit | 612b3a3cd2bd8de488fc77698513116b5cfdb2ba (patch) | |
tree | 69b346d3c816f0c35a7e0a18782f39113a3ef82d /sys/arch/macppc/dev | |
parent | 72083e5ca7c802c8c19b2ab4a69b5d84d1a6b55b (diff) |
Oops, I'm on drugs. Revert and blame gremlins for the state of my tree.
Diffstat (limited to 'sys/arch/macppc/dev')
-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 5147f5fdbe9..923808c6a2a 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.17 2003/10/26 15:04:32 miod Exp $ */ +/* $OpenBSD: wdc_obio.c,v 1.18 2003/10/26 15:15:26 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 wdc_obio_dma_finish(void *, int, 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) +wdc_obio_dma_finish(void *v, int channel, int drive, int force) { struct wdc_obio_softc *sc = v; |