aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/plat-versatile/platsmp.c
diff options
context:
space:
mode:
authorNicolas Pitre <nicolas.pitre@linaro.org>2013-12-05 14:26:16 -0500
committerOlof Johansson <olof@lixom.net>2013-12-11 19:24:34 -0500
commitf45913fde00f13f502730809d128e607da2a57c8 (patch)
tree93500b68df0096c857b7f407ed75451456d848bd /arch/arm/plat-versatile/platsmp.c
parentbc34eb53ab02bb99f8ffae5662f1fde6f97ad275 (diff)
ARM: clean up cache handling in platform code
We have a handy macro to replace open coded __cpuc_flush_dcache_area(() and outer_clean_range() sequences. Let's use it. No functional change. Signed-off-by: Nicolas Pitre <nico@linaro.org> Signed-off-by: Olof Johansson <olof@lixom.net>
Diffstat (limited to 'arch/arm/plat-versatile/platsmp.c')
-rw-r--r--arch/arm/plat-versatile/platsmp.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/arm/plat-versatile/platsmp.c b/arch/arm/plat-versatile/platsmp.c
index 39895d892c3b..53feb90c840c 100644
--- a/arch/arm/plat-versatile/platsmp.c
+++ b/arch/arm/plat-versatile/platsmp.c
@@ -27,8 +27,7 @@ static void write_pen_release(int val)
27{ 27{
28 pen_release = val; 28 pen_release = val;
29 smp_wmb(); 29 smp_wmb();
30 __cpuc_flush_dcache_area((void *)&pen_release, sizeof(pen_release)); 30 sync_cache_w(&pen_release);
31 outer_clean_range(__pa(&pen_release), __pa(&pen_release + 1));
32} 31}
33 32
34static DEFINE_SPINLOCK(boot_lock); 33static DEFINE_SPINLOCK(boot_lock);