mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
In the SYNOPSIS section, move the bus_dmamem_alloc function prototype
to just before bus_dmamem_free, which is (a) more logical; (b) likely what was originally intended and (c) matches the order in the NAME and FUNCTIONS sections.
This commit is contained in:
parent
d30412a8db
commit
cbfef69c64
1 changed files with 3 additions and 3 deletions
|
|
@ -103,14 +103,14 @@
|
|||
.Fn bus_dmamap_load_uio "bus_dma_tag_t dmat" "bus_dmamap_t map" \
|
||||
"struct uio *uio" "bus_dmamap_callback2_t *callback" "void *callback_arg" \
|
||||
"int flags"
|
||||
.Ft int
|
||||
.Fn bus_dmamem_alloc "bus_dma_tag_t dmat" "void **vaddr" \
|
||||
"int flags" "bus_dmamap_t *mapp"
|
||||
.Ft void
|
||||
.Fn bus_dmamap_unload "bus_dma_tag_t dmat" "bus_dmamap_t map"
|
||||
.Ft void
|
||||
.Fn bus_dmamap_sync "bus_dma_tag_t dmat" "bus_dmamap_t map" \
|
||||
"op"
|
||||
.Ft int
|
||||
.Fn bus_dmamem_alloc "bus_dma_tag_t dmat" "void **vaddr" \
|
||||
"int flags" "bus_dmamap_t *mapp"
|
||||
.Ft void
|
||||
.Fn bus_dmamem_free "bus_dma_tag_t dmat" "void *vaddr" \
|
||||
"bus_dmamap_t map"
|
||||
|
|
|
|||
Loading…
Reference in a new issue