* Release the mapping held by map. */
| 78 | * Release the mapping held by map. |
| 79 | */ |
| 80 | static inline void |
| 81 | bus_dmamap_unload(bus_dma_tag_t dmat, bus_dmamap_t map) |
| 82 | { |
| 83 | struct bus_dma_tag_common *tc; |
| 84 | |
| 85 | tc = (struct bus_dma_tag_common *)dmat; |
| 86 | tc->impl->map_unload(dmat, map); |
| 87 | } |
| 88 | |
| 89 | static inline void |
| 90 | bus_dmamap_sync(bus_dma_tag_t dmat, bus_dmamap_t map, bus_dmasync_op_t op) |
no outgoing calls
no test coverage detected