|
@@ -121,6 +121,13 @@ static inline unsigned long dma_max_pfn(struct device *dev)
|
|
|
}
|
|
|
#define dma_max_pfn(dev) dma_max_pfn(dev)
|
|
|
|
|
|
+static inline int set_arch_dma_coherent_ops(struct device *dev)
|
|
|
+{
|
|
|
+ set_dma_ops(dev, &arm_coherent_dma_ops);
|
|
|
+ return 0;
|
|
|
+}
|
|
|
+#define set_arch_dma_coherent_ops(dev) set_arch_dma_coherent_ops(dev)
|
|
|
+
|
|
|
static inline dma_addr_t phys_to_dma(struct device *dev, phys_addr_t paddr)
|
|
|
{
|
|
|
unsigned int offset = paddr & ~PAGE_MASK;
|