* Release the mapping held by map. */
| 105 | * Release the mapping held by map. |
| 106 | */ |
| 107 | static inline void |
| 108 | bus_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 | |
| 118 | static inline void |
| 119 | bus_dmamap_sync(bus_dma_tag_t dmat, bus_dmamap_t map, bus_dmasync_op_t op) |
no outgoing calls
no test coverage detected