aboutsummaryrefslogtreecommitdiff
path: root/include/asm-um
diff options
context:
space:
mode:
authorDavid S. Miller <davem@davemloft.net>2008-09-19 12:44:54 -0700
committerDavid S. Miller <davem@davemloft.net>2008-09-19 12:44:54 -0700
commit02a1416478b70cd49bd74827438c8ba797784728 (patch)
treecb1539e902a3651be684f42cefcf89fa56da8f26 /include/asm-um
parent821c92f258bd9b01eb900992969803645b6ba9d6 (diff)
net: Fix build with ARCH=um
If UM is going to claim that it supports DMA by setting HAS_DMA, it should provide a dma_mapping_error() implementation. Based upon a report by Julius Volz. Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/asm-um')
-rw-r--r--include/asm-um/dma-mapping.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/include/asm-um/dma-mapping.h b/include/asm-um/dma-mapping.h
index f0ee4fb5591..90fc708b320 100644
--- a/include/asm-um/dma-mapping.h
+++ b/include/asm-um/dma-mapping.h
@@ -118,4 +118,11 @@ dma_cache_sync(struct device *dev, void *vaddr, size_t size,
BUG();
}
+static inline int
+dma_mapping_error(struct device *dev, dma_addr_t dma_handle)
+{
+ BUG();
+ return 0;
+}
+
#endif