mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Even in a 80 column, fixed point font, there's plenty of room for all
the arguments to bus_dmamap_load, so don't use '...' but list the actual args. '...' usually means a variable number of args (cf printf(3)), but bus_dmamap_load takes a fixed number of arguments.
This commit is contained in:
parent
cbfef69c64
commit
95929b661e
1 changed files with 2 additions and 1 deletions
|
|
@ -458,7 +458,8 @@ Returns
|
|||
.Er EBUSY
|
||||
if a mapping is still active for
|
||||
.Fa map .
|
||||
.It Fn bus_dmamap_load "dmat" "map" "buf" "buflen" "*callback" "..."
|
||||
.It Fn bus_dmamap_load "dmat" "map" "buf" "buflen" "*callback" \
|
||||
"callback_arg" "flags"
|
||||
Creates a mapping in device visible address space of
|
||||
.Fa buflen
|
||||
bytes of
|
||||
|
|
|
|||
Loading…
Reference in a new issue