diff options
author | Maxime Bizon <mbizon@freebox.fr> | 2007-08-31 11:03:14 +0200 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2007-09-11 19:03:25 +0100 |
commit | 8bce4e9de113e2957c74cc4ce36fbd6eff47d24d (patch) | |
tree | 0c43bf6dbaf772ac45aab5f6c66d973bc4635749 /arch/mips | |
parent | 4af2b1454da7a2feec071a6a50dd957df7d0b7a7 (diff) |
[MIPS] R10000: Fix wrong test in dma-default.c
Signed-off-by: Maxime Bizon <mbizon@freebox.fr>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips')
-rw-r--r-- | arch/mips/mm/dma-default.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/mm/dma-default.c b/arch/mips/mm/dma-default.c index 76903c72764..f60b3dc0fc6 100644 --- a/arch/mips/mm/dma-default.c +++ b/arch/mips/mm/dma-default.c @@ -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) { return !plat_device_is_coherent(dev) && - (current_cpu_data.cputype == CPU_R10000 && + (current_cpu_data.cputype == CPU_R10000 || current_cpu_data.cputype == CPU_R12000); } |