|
@@ -246,10 +246,10 @@ void dma_sync_single_for_device(struct device *dev, dma_addr_t dma_handle,
|
|
{
|
|
{
|
|
BUG_ON(direction == DMA_NONE);
|
|
BUG_ON(direction == DMA_NONE);
|
|
|
|
|
|
- if (cpu_is_noncoherent_r10000(dev)) {
|
|
|
|
|
|
+ if (!plat_device_is_coherent(dev)) {
|
|
unsigned long addr;
|
|
unsigned long addr;
|
|
|
|
|
|
- addr = plat_dma_addr_to_phys(dma_handle);
|
|
|
|
|
|
+ addr = PAGE_OFFSET + plat_dma_addr_to_phys(dma_handle);
|
|
__dma_sync(addr, size, direction);
|
|
__dma_sync(addr, size, direction);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
@@ -276,7 +276,7 @@ void dma_sync_single_range_for_device(struct device *dev, dma_addr_t dma_handle,
|
|
{
|
|
{
|
|
BUG_ON(direction == DMA_NONE);
|
|
BUG_ON(direction == DMA_NONE);
|
|
|
|
|
|
- if (cpu_is_noncoherent_r10000(dev)) {
|
|
|
|
|
|
+ if (!plat_device_is_coherent(dev)) {
|
|
unsigned long addr;
|
|
unsigned long addr;
|
|
|
|
|
|
addr = PAGE_OFFSET + plat_dma_addr_to_phys(dma_handle);
|
|
addr = PAGE_OFFSET + plat_dma_addr_to_phys(dma_handle);
|