aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/dma-debug.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/dma-debug.h')
-rw-r--r--include/linux/dma-debug.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/include/linux/dma-debug.h b/include/linux/dma-debug.h
index ee9fdb328549..cb72dfd87326 100644
--- a/include/linux/dma-debug.h
+++ b/include/linux/dma-debug.h
@@ -43,6 +43,12 @@ extern void debug_dma_map_sg(struct device *dev, struct scatterlist *sg,
43extern void debug_dma_unmap_sg(struct device *dev, struct scatterlist *sglist, 43extern void debug_dma_unmap_sg(struct device *dev, struct scatterlist *sglist,
44 int nelems, int dir); 44 int nelems, int dir);
45 45
46extern void debug_dma_alloc_coherent(struct device *dev, size_t size,
47 dma_addr_t dma_addr, void *virt);
48
49extern void debug_dma_free_coherent(struct device *dev, size_t size,
50 void *virt, dma_addr_t addr);
51
46#else /* CONFIG_DMA_API_DEBUG */ 52#else /* CONFIG_DMA_API_DEBUG */
47 53
48static inline void dma_debug_init(u32 num_entries) 54static inline void dma_debug_init(u32 num_entries)
@@ -73,6 +79,16 @@ static inline void debug_dma_unmap_sg(struct device *dev,
73{ 79{
74} 80}
75 81
82static inline void debug_dma_alloc_coherent(struct device *dev, size_t size,
83 dma_addr_t dma_addr, void *virt)
84{
85}
86
87static inline void debug_dma_free_coherent(struct device *dev, size_t size,
88 void *virt, dma_addr_t addr)
89{
90}
91
76#endif /* CONFIG_DMA_API_DEBUG */ 92#endif /* CONFIG_DMA_API_DEBUG */
77 93
78#endif /* __DMA_DEBUG_H */ 94#endif /* __DMA_DEBUG_H */