Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/share/man/man9 fix proto



details:   https://anonhg.NetBSD.org/src/rev/68cd3acf8138
branches:  trunk
changeset: 790088:68cd3acf8138
user:      pooka <pooka%NetBSD.org@localhost>
date:      Tue Sep 17 20:57:45 2013 +0000

description:
fix proto

diffstat:

 share/man/man9/bus_dma.9 |  12 ++++++------
 1 files changed, 6 insertions(+), 6 deletions(-)

diffs (44 lines):

diff -r 1bed6b8e837f -r 68cd3acf8138 share/man/man9/bus_dma.9
--- a/share/man/man9/bus_dma.9  Tue Sep 17 20:00:50 2013 +0000
+++ b/share/man/man9/bus_dma.9  Tue Sep 17 20:57:45 2013 +0000
@@ -1,4 +1,4 @@
-.\" $NetBSD: bus_dma.9,v 1.57 2011/07/09 07:57:53 wiz Exp $
+.\" $NetBSD: bus_dma.9,v 1.58 2013/09/17 20:57:45 pooka Exp $
 .\"
 .\" Copyright (c) 1996, 1997, 1998, 2001, 2005, 2006 The NetBSD Foundation, Inc.
 .\" All rights reserved.
@@ -58,7 +58,7 @@
 .Fn bus_dmamap_destroy "bus_dma_tag_t tag" "bus_dmamap_t dmam"
 .Ft int
 .Fn bus_dmamap_load "bus_dma_tag_t tag" "bus_dmamap_t dmam" "void *buf" \
-"bus_size_t buflen" "struct lwp *l" "int flags"
+"bus_size_t buflen" "struct proc *p" "int flags"
 .Ft int
 .Fn bus_dmamap_load_mbuf "bus_dma_tag_t tag" "bus_dmamap_t dmam" \
 "struct mbuf *chain" "int flags"
@@ -243,7 +243,7 @@
 If given valid arguments,
 .Fn bus_dmamap_destroy
 always succeeds.
-.It Fn bus_dmamap_load "tag" "dmam" "buf" "buflen" "l" "flags"
+.It Fn bus_dmamap_load "tag" "dmam" "buf" "buflen" "p" "flags"
 Loads a DMA handle with mappings for a DMA transfer.
 It assumes that all pages involved in a DMA transfer are wired.
 Arguments are as follows:
@@ -257,13 +257,13 @@
 The buffer to be used for the DMA transfer.
 .It Fa buflen
 The size of the buffer.
-.It Fa l
+.It Fa p
 Used to indicate the address space in which the buffer is located.
 If
 .Dv NULL ,
 the buffer is assumed to be in kernel space.
-Otherwise, the buffer is assumed to be in lwp
-.Fa l Ap s
+Otherwise, the buffer is assumed to be in proc
+.Fa p Ap s
 address space.
 .It Fa flags
 are defined as follows:



Home | Main Index | Thread Index | Old Index