* Destroy a handle for mapping from kva/uva/physical * address space into bus device space. */
| 65 | * address space into bus device space. |
| 66 | */ |
| 67 | static inline int |
| 68 | bus_dmamap_destroy(bus_dma_tag_t dmat, bus_dmamap_t map) |
| 69 | { |
| 70 | struct bus_dma_tag_common *tc; |
| 71 | |
| 72 | tc = (struct bus_dma_tag_common *)dmat; |
| 73 | return (tc->impl->map_destroy(dmat, map)); |
| 74 | } |
| 75 | |
| 76 | /* |
| 77 | * Allocate a piece of memory that can be efficiently mapped into |
no outgoing calls
no test coverage detected