mirror of
https://github.com/followmsi/android_kernel_google_msm.git
synced 2024-11-06 23:17:41 +00:00
sh: define dma noncoherent API functions.
sh was missing these, too. Signed-off-by: Paul Mundt <lethal@linux-sh.org>
This commit is contained in:
parent
fe82891750
commit
c7666e72cf
1 changed files with 4 additions and 0 deletions
|
@ -53,6 +53,10 @@ static inline void dma_free_coherent(struct device *dev, size_t size,
|
||||||
consistent_free(vaddr, 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,
|
static inline void dma_cache_sync(struct device *dev, void *vaddr, size_t size,
|
||||||
enum dma_data_direction dir)
|
enum dma_data_direction dir)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue