dma-mapping: always provide the dma_map_ops based implementation
[deliverable/linux.git] / arch / avr32 / include / asm / dma-mapping.h
1 #ifndef __ASM_AVR32_DMA_MAPPING_H
2 #define __ASM_AVR32_DMA_MAPPING_H
3
4 extern void dma_cache_sync(struct device *dev, void *vaddr, size_t size,
5 int direction);
6
7 extern struct dma_map_ops avr32_dma_ops;
8
9 static inline struct dma_map_ops *get_dma_ops(struct device *dev)
10 {
11 return &avr32_dma_ops;
12 }
13
14 #endif /* __ASM_AVR32_DMA_MAPPING_H */
This page took 0.030102 seconds and 5 git commands to generate.