MCPcopy Create free account
hub / github.com/F-Stack/f-stack / bus_dmamap_unload

Function bus_dmamap_unload

freebsd/x86/include/bus_dma.h:107–116  ·  view source on GitHub ↗

* Release the mapping held by map. */

Source from the content-addressed store, hash-verified

105 * Release the mapping held by map.
106 */
107static inline void
108bus_dmamap_unload(bus_dma_tag_t dmat, bus_dmamap_t map)
109{
110 struct bus_dma_tag_common *tc;
111
112 if (map != NULL) {
113 tc = (struct bus_dma_tag_common *)dmat;
114 tc->impl->map_unload(dmat, map);
115 }
116}
117
118static inline void
119bus_dmamap_sync(bus_dma_tag_t dmat, bus_dmamap_t map, bus_dmasync_op_t op)

Callers 15

vchiq_platform_initFunction · 0.50
vchiq_platform_exitFunction · 0.50
free_pagelistFunction · 0.50
ccp_hw_attach_queueFunction · 0.50
ccp_hw_detach_queueFunction · 0.50
set_ownershipFunction · 0.50
iflib_dma_freeFunction · 0.50
iflib_txsd_destroyFunction · 0.50
iflib_txsd_freeFunction · 0.50
iflib_fl_bufs_freeFunction · 0.50
iflib_rx_sds_freeFunction · 0.50
rxd_frag_to_sdFunction · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected