Commit 8bce4e9d authored by Maxime Bizon's avatar Maxime Bizon Committed by Ralf Baechle

[MIPS] R10000: Fix wrong test in dma-default.c

Signed-off-by: default avatarMaxime Bizon <mbizon@freebox.fr>
Signed-off-by: default avatarRalf Baechle <ralf@linux-mips.org>
parent 4af2b145
...@@ -35,7 +35,7 @@ static inline unsigned long dma_addr_to_virt(dma_addr_t dma_addr) ...@@ -35,7 +35,7 @@ static inline unsigned long dma_addr_to_virt(dma_addr_t dma_addr)
static inline int cpu_is_noncoherent_r10000(struct device *dev) static inline int cpu_is_noncoherent_r10000(struct device *dev)
{ {
return !plat_device_is_coherent(dev) && return !plat_device_is_coherent(dev) &&
(current_cpu_data.cputype == CPU_R10000 && (current_cpu_data.cputype == CPU_R10000 ||
current_cpu_data.cputype == CPU_R12000); current_cpu_data.cputype == CPU_R12000);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment