projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fe82891
)
sh: define dma noncoherent API functions.
author
Paul Mundt
<lethal@linux-sh.org>
Tue, 13 Feb 2007 02:11:22 +0000
(11:11 +0900)
committer
Paul Mundt
<lethal@linux-sh.org>
Tue, 13 Feb 2007 02:11:22 +0000
(11:11 +0900)
sh was missing these, too.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
include/asm-sh/dma-mapping.h
patch
|
blob
|
history
diff --git
a/include/asm-sh/dma-mapping.h
b/include/asm-sh/dma-mapping.h
index 8d0867b98e05141ce77d5bb4f3837e3877e0c124..d3bc7818bbbea2e6631f781739266fb740d0bb7e 100644
(file)
--- a/
include/asm-sh/dma-mapping.h
+++ b/
include/asm-sh/dma-mapping.h
@@
-53,6
+53,10
@@
static inline void dma_free_coherent(struct device *dev, size_t size,
consistent_free(vaddr, size);
}
+#define dma_alloc_noncoherent(d, s, h, f) dma_alloc_coherent(d, s, h, f)
+#define dma_free_noncoherent(d, s, v, h) dma_free_coherent(d, s, v, h)
+#define dma_is_consistent(d, h) (1)
+
static inline void dma_cache_sync(struct device *dev, void *vaddr, size_t size,
enum dma_data_direction dir)
{