From: Ralf Baechle Date: Wed, 27 Jan 2016 17:39:33 +0000 (+0100) Subject: MIPS: VR41xx: Use __flush_cache_all instead of flush_cache_all. X-Git-Tag: v4.7-rc1~122^2~237 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a48ac3a131c1675de4c8293f59f6864db2a83240;p=thirdparty%2Fkernel%2Flinux.git MIPS: VR41xx: Use __flush_cache_all instead of flush_cache_all. It's probably a good idea to flush caches before reset and by the time this code was written flush_cache_all did actually still do something. Signed-off-by: Ralf Baechle --- diff --git a/arch/mips/vr41xx/common/pmu.c b/arch/mips/vr41xx/common/pmu.c index d7f755833c3f4..39a0db3e2b346 100644 --- a/arch/mips/vr41xx/common/pmu.c +++ b/arch/mips/vr41xx/common/pmu.c @@ -73,7 +73,7 @@ static inline void software_reset(void) default: set_c0_status(ST0_BEV | ST0_ERL); change_c0_config(CONF_CM_CMASK, CONF_CM_UNCACHED); - flush_cache_all(); + __flush_cache_all(); write_c0_wired(0); __asm__("jr %0"::"r"(0xbfc00000)); break;