* Allocate a handle for mapping from kva/uva/physical * address space into bus device space. */
| 52 | * address space into bus device space. |
| 53 | */ |
| 54 | static inline int |
| 55 | bus_dmamap_create(bus_dma_tag_t dmat, int flags, bus_dmamap_t *mapp) |
| 56 | { |
| 57 | struct bus_dma_tag_common *tc; |
| 58 | |
| 59 | tc = (struct bus_dma_tag_common *)dmat; |
| 60 | return (tc->impl->map_create(dmat, flags, mapp)); |
| 61 | } |
| 62 | |
| 63 | /* |
| 64 | * Destroy a handle for mapping from kva/uva/physical |
no outgoing calls
no test coverage detected