diff options
Diffstat (limited to 'arch/mips/mm')
-rw-r--r-- | arch/mips/mm/dma-noncoherent.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/mm/dma-noncoherent.c b/arch/mips/mm/dma-noncoherent.c index e6c9485cadcf..cb38461391cb 100644 --- a/arch/mips/mm/dma-noncoherent.c +++ b/arch/mips/mm/dma-noncoherent.c | |||
@@ -50,7 +50,7 @@ void *arch_dma_alloc(struct device *dev, size_t size, | |||
50 | void *ret; | 50 | void *ret; |
51 | 51 | ||
52 | ret = dma_direct_alloc_pages(dev, size, dma_handle, gfp, attrs); | 52 | ret = dma_direct_alloc_pages(dev, size, dma_handle, gfp, attrs); |
53 | if (!ret && !(attrs & DMA_ATTR_NON_CONSISTENT)) { | 53 | if (ret && !(attrs & DMA_ATTR_NON_CONSISTENT)) { |
54 | dma_cache_wback_inv((unsigned long) ret, size); | 54 | dma_cache_wback_inv((unsigned long) ret, size); |
55 | ret = (void *)UNCAC_ADDR(ret); | 55 | ret = (void *)UNCAC_ADDR(ret); |
56 | } | 56 | } |