diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2016-01-27 18:39:33 +0100 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2016-05-13 14:01:38 +0200 |
commit | a48ac3a131c1675de4c8293f59f6864db2a83240 (patch) | |
tree | e31414180e650e992c0e871c9d0dc29a0fde4835 | |
parent | 7c8196fd43e41e7b699d2f7a54bafd10dd2f65bb (diff) | |
download | blackbird-obmc-linux-a48ac3a131c1675de4c8293f59f6864db2a83240.tar.gz blackbird-obmc-linux-a48ac3a131c1675de4c8293f59f6864db2a83240.zip |
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 <ralf@linux-mips.org>
-rw-r--r-- | arch/mips/vr41xx/common/pmu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/vr41xx/common/pmu.c b/arch/mips/vr41xx/common/pmu.c index d7f755833c3f..39a0db3e2b34 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; |