dma-mapping.h 336 B

1234567891011121314
  1. #ifndef __ASM_AVR32_DMA_MAPPING_H
  2. #define __ASM_AVR32_DMA_MAPPING_H
  3. extern void dma_cache_sync(struct device *dev, void *vaddr, size_t size,
  4. int direction);
  5. extern struct dma_map_ops avr32_dma_ops;
  6. static inline struct dma_map_ops *get_dma_ops(struct device *dev)
  7. {
  8. return &avr32_dma_ops;
  9. }
  10. #endif /* __ASM_AVR32_DMA_MAPPING_H */