| 205 | } |
| 206 | |
| 207 | rt_inline void rt_dma_free_coherent(struct rt_device *dev, rt_size_t size, |
| 208 | void *cpu_addr, rt_ubase_t dma_handle) |
| 209 | { |
| 210 | rt_dma_free(dev, size, cpu_addr, dma_handle, |
| 211 | RT_DMA_F_NOCACHE | RT_DMA_F_LINEAR); |
| 212 | } |
| 213 | |
| 214 | rt_err_t rt_dma_sync_out_data(struct rt_device *dev, void *data, rt_size_t size, |
| 215 | rt_ubase_t *dma_handle, rt_ubase_t flags); |
no test coverage detected