powerpc: Fix dma_map_sg() cache flushing on non coherent platforms

On PowerPC 4xx or other non cache-coherent platforms, we lost the
appropriate cache flushing in dma_map_sg() when merging the 32 and
64-bit DMA code (commit 4fc665b88a79a45bae8bbf3a05563c27c7337c3d,
"powerpc: Merge 32 and 64-bit dma code"). This restores it.

Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Acked-by: Becky Bruce <beckyb@kernel.crashing.org>
Signed-off-by: Paul Mackerras <paulus@samba.org>

authored by Benjamin Herrenschmidt and committed by Paul Mackerras 2434bbb3 f6f7b52e

+1
+1
arch/powerpc/kernel/dma.c
··· 75 75 for_each_sg(sgl, sg, nents, i) { 76 76 sg->dma_address = sg_phys(sg) + get_dma_direct_offset(dev); 77 77 sg->dma_length = sg->length; 78 + __dma_sync_page(sg_page(sg), sg->offset, sg->length, direction); 78 79 } 79 80 80 81 return nents;