dma-mapping.c 187 B

12345678910
  1. #include <linux/dma-mapping.h>
  2. struct dma_map_ops *dma_ops;
  3. EXPORT_SYMBOL(dma_ops);
  4. struct dma_map_ops *dma_get_ops(struct device *dev)
  5. {
  6. return dma_ops;
  7. }
  8. EXPORT_SYMBOL(dma_get_ops);