aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-mips/mach-generic/dma-coherence.h
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>2007-03-01 15:30:01 +0000
committerRalf Baechle <ralf@linux-mips.org>2007-03-04 19:02:39 +0000
commita9b6590ced1370537edad8dc60be32c044b2380e (patch)
tree33b07e096cdd527cb9c72c264a1fa2280eea0e5c /include/asm-mips/mach-generic/dma-coherence.h
parent[MIPS] RM: It should be #ifdef CONFIG_FOO not #if CONFIG_FOO ... (diff)
downloadlinux-dev-a9b6590ced1370537edad8dc60be32c044b2380e.tar.xz
linux-dev-a9b6590ced1370537edad8dc60be32c044b2380e.zip
[MIPS] DMA: Fix a bunch of warnings due to missing inline keywords.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to '')
-rw-r--r--include/asm-mips/mach-generic/dma-coherence.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/include/asm-mips/mach-generic/dma-coherence.h b/include/asm-mips/mach-generic/dma-coherence.h
index df71822fd27b..76e04e7feb84 100644
--- a/include/asm-mips/mach-generic/dma-coherence.h
+++ b/include/asm-mips/mach-generic/dma-coherence.h
@@ -11,22 +11,24 @@
struct device;
-static dma_addr_t plat_map_dma_mem(struct device *dev, void *addr, size_t size)
+static inline dma_addr_t plat_map_dma_mem(struct device *dev, void *addr,
+ size_t size)
{
return virt_to_phys(addr);
}
-static dma_addr_t plat_map_dma_mem_page(struct device *dev, struct page *page)
+static inline dma_addr_t plat_map_dma_mem_page(struct device *dev,
+ struct page *page)
{
return page_to_phys(page);
}
-static unsigned long plat_dma_addr_to_phys(dma_addr_t dma_addr)
+static inline unsigned long plat_dma_addr_to_phys(dma_addr_t dma_addr)
{
return dma_addr;
}
-static void plat_unmap_dma_mem(dma_addr_t dma_addr)
+static inline void plat_unmap_dma_mem(dma_addr_t dma_addr)
{
}