diff options
author | Jason McIntyre <jmc@cvs.openbsd.org> | 2003-04-01 19:34:32 +0000 |
---|---|---|
committer | Jason McIntyre <jmc@cvs.openbsd.org> | 2003-04-01 19:34:32 +0000 |
commit | c190554358a31e512bbcde87b4b21e3e43c4b966 (patch) | |
tree | 8da7b503f36c43d33394d24c21d0a883a7800268 /share/man | |
parent | be853c85d39cd82ffd2656b5806d4236194572a4 (diff) |
dma -> DMA
ok millert@
Diffstat (limited to 'share/man')
-rw-r--r-- | share/man/man4/bktr.4 | 4 | ||||
-rw-r--r-- | share/man/man9/bus_dma.9 | 10 |
2 files changed, 7 insertions, 7 deletions
diff --git a/share/man/man4/bktr.4 b/share/man/man4/bktr.4 index 2e8c52f5044..67e89f27213 100644 --- a/share/man/man4/bktr.4 +++ b/share/man/man4/bktr.4 @@ -29,7 +29,7 @@ .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. .\" -.\" $OpenBSD: bktr.4,v 1.3 2003/02/17 13:39:37 jmc Exp $ +.\" $OpenBSD: bktr.4,v 1.4 2003/04/01 19:34:31 jmc Exp $ .\" $FreeBSD: /c/ncvs/src/share/man/man4/bktr.4,v 1.9.2.5 2001/03/06 19:08:09 ru Exp $ .\" .Dd January 28, 1998 @@ -66,7 +66,7 @@ VideoLogic Captivator PCI .Pp The driver currently supports the following features: .Bd -unfilled -offset indent -PCI to PCI dma transfer +PCI to PCI DMA transfer clipping yuv rgb16 diff --git a/share/man/man9/bus_dma.9 b/share/man/man9/bus_dma.9 index 695ee3f8b4d..a099212cf01 100644 --- a/share/man/man9/bus_dma.9 +++ b/share/man/man9/bus_dma.9 @@ -1,4 +1,4 @@ -.\" $OpenBSD: bus_dma.9,v 1.14 2003/01/11 06:14:35 wcobb Exp $ +.\" $OpenBSD: bus_dma.9,v 1.15 2003/04/01 19:34:31 jmc Exp $ .\" $NetBSD: bus_dma.9,v 1.14 2000/06/14 06:49:19 cgd Exp $ .\" .\" Copyright (c) 1996, 1997, 1998 The NetBSD Foundation, Inc. @@ -65,11 +65,11 @@ bus_dma_tag_t's are an opaque type, received from higher software layers and are never created, changed, deleted or even examined in this interface. .Pp -The basic cycle to transfer data to/from a dma device is: +The basic cycle to transfer data to/from a DMA device is: .Bd -literal bus_dmamap_create(); /* get a dmamap to load/unload */ -for each dma xfer { +for each DMA xfer { bus_dmamem_alloc(); /* allocate some DMA'able memory */ bus_dmamem_map(); /* map it into the kernel address space */ @@ -80,7 +80,7 @@ for each dma xfer { */ bus_dmamap_load(); /* initialize the segments of dmamap */ - bus_dmamap_sync(); /* synchronize/flush any dma cache */ + bus_dmamap_sync(); /* synchronize/flush any DMA cache */ for (i=0; i<dm_nsegs; i++) { /* @@ -92,7 +92,7 @@ for each dma xfer { */ } - bus_dmamap_sync(); /* synchronize/flush any dma cache */ + bus_dmamap_sync(); /* synchronize/flush any DMA cache */ bus_dmamap_unload(); /* prepare dmamap for reuse */ /* |