Lines Matching refs:ops
37 struct dma_map_ops *ops = get_dma_ops(dev); in dma_supported() local
38 return ops->dma_supported(dev, mask); in dma_supported()
43 struct dma_map_ops *ops = get_dma_ops(dev); in dma_mapping_error() local
46 return ops->mapping_error(dev, mask); in dma_mapping_error()
52 struct dma_map_ops *ops = get_dma_ops(dev); in dma_set_mask() local
57 if (ops->set_dma_mask) in dma_set_mask()
58 return ops->set_dma_mask(dev, mask); in dma_set_mask()
75 struct dma_map_ops *ops = get_dma_ops(dev); in dma_alloc_attrs() local
77 ret = ops->alloc(dev, size, dma_handle, gfp, attrs); in dma_alloc_attrs()
90 struct dma_map_ops *ops = get_dma_ops(dev); in dma_free_attrs() local
92 ops->free(dev, size, vaddr, dma_handle, attrs); in dma_free_attrs()