diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2016-01-27 17:07:00 (GMT) |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2016-05-13 12:01:37 (GMT) |
commit | 9329c154e4a8a253347829c1d8cc416061cc055a (patch) | |
tree | 725364ae8411f617e4379bdb335a872d81e074f6 | |
parent | 81424d0ad0d41f05049aac6d4959d17a5a3c69c8 (diff) | |
download | linux-9329c154e4a8a253347829c1d8cc416061cc055a.tar.xz |
MIPS: Octeon: Use __flush_cache_all instead of flush_cache_all.
flush_cache_all will go away.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
-rw-r--r-- | arch/mips/cavium-octeon/smp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/cavium-octeon/smp.c b/arch/mips/cavium-octeon/smp.c index 42412ba..61a60e4 100644 --- a/arch/mips/cavium-octeon/smp.c +++ b/arch/mips/cavium-octeon/smp.c @@ -242,7 +242,7 @@ static int octeon_cpu_disable(void) cpumask_clear_cpu(cpu, &cpu_callin_map); octeon_fixup_irqs(); - flush_cache_all(); + __flush_cache_all(); local_flush_tlb_all(); return 0; |