diff options
author | 2001-11-09 15:14:13 +0000 | |
---|---|---|
committer | 2001-11-09 15:14:13 +0000 | |
commit | ce1b87c536e9694cdb6baf3b1d1c02f0f2f0103e (patch) | |
tree | c5b7549249c671058fb17d61683ec1a374faaa80 | |
parent | various style fixes. (diff) | |
download | wireguard-openbsd-ce1b87c536e9694cdb6baf3b1d1c02f0f2f0103e.tar.xz wireguard-openbsd-ce1b87c536e9694cdb6baf3b1d1c02f0f2f0103e.zip |
unbreak
-rw-r--r-- | sys/arch/mvmeppc/mvmeppc/bus_dma.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/mvmeppc/mvmeppc/bus_dma.c b/sys/arch/mvmeppc/mvmeppc/bus_dma.c index 6f38316459c..c108948d1ea 100644 --- a/sys/arch/mvmeppc/mvmeppc/bus_dma.c +++ b/sys/arch/mvmeppc/mvmeppc/bus_dma.c @@ -1,4 +1,4 @@ -/* $OpenBSD: bus_dma.c,v 1.7 2001/11/06 19:53:15 miod Exp $ */ +/* $OpenBSD: bus_dma.c,v 1.8 2001/11/09 15:14:13 art Exp $ */ /* $NetBSD: bus_dma.c,v 1.2 2001/06/10 02:31:25 briggs Exp $ */ /*- @@ -418,7 +418,7 @@ _bus_dmamap_sync(t, map, offset, len, op) case BUS_DMASYNC_PREWRITE: case BUS_DMASYNC_PREREAD: for (i = map->dm_nsegs; i--; ) - invdcache(map->dm_segs[i].ds_addr, + invdcache((void *)map->dm_segs[i].ds_addr, len); break; } |