From: Paul Mundt Date: Tue, 13 Feb 2007 02:11:22 +0000 (+0900) Subject: sh: define dma noncoherent API functions. X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=c7666e72cff1a2793055486340ac5f5137494c08;p=GitHub%2Fmt8127%2Fandroid_kernel_alcatel_ttab.git sh: define dma noncoherent API functions. sh was missing these, too. Signed-off-by: Paul Mundt --- diff --git a/include/asm-sh/dma-mapping.h b/include/asm-sh/dma-mapping.h index 8d0867b98e05..d3bc7818bbbe 100644 --- 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) {