dma-mapping.h 355 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 const struct dma_map_ops avr32_dma_ops;
  6. static inline const struct dma_map_ops *get_arch_dma_ops(struct bus_type *bus)
  7. {
  8. return &avr32_dma_ops;
  9. }
  10. #endif /* __ASM_AVR32_DMA_MAPPING_H */