aboutsummaryrefslogtreecommitdiffstats
path: root/arch/blackfin/mach-common
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2011-02-01 20:55:01 -0500
committerMike Frysinger <vapier@gentoo.org>2011-03-18 04:01:01 -0400
commit5f362c91d09370cf8a3c5fbe349218377ad64e4a (patch)
tree8fcca78fa16b5b30fd108d0a253818d918a5843f /arch/blackfin/mach-common
parentef9d8c251ac84e2c471768bb57298b177f8d6ab5 (diff)
Blackfin: SMP: use standard cache functions
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'arch/blackfin/mach-common')
-rw-r--r--arch/blackfin/mach-common/smp.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/blackfin/mach-common/smp.c b/arch/blackfin/mach-common/smp.c
index 9f251406a76a..d3f597a92053 100644
--- a/arch/blackfin/mach-common/smp.c
+++ b/arch/blackfin/mach-common/smp.c
@@ -105,10 +105,10 @@ static void ipi_flush_icache(void *info)
105 struct blackfin_flush_data *fdata = info; 105 struct blackfin_flush_data *fdata = info;
106 106
107 /* Invalidate the memory holding the bounds of the flushed region. */ 107 /* Invalidate the memory holding the bounds of the flushed region. */
108 blackfin_dcache_invalidate_range((unsigned long)fdata, 108 invalidate_dcache_range((unsigned long)fdata,
109 (unsigned long)fdata + sizeof(*fdata)); 109 (unsigned long)fdata + sizeof(*fdata));
110 110
111 blackfin_icache_flush_range(fdata->start, fdata->end); 111 flush_icache_range(fdata->start, fdata->end);
112} 112}
113 113
114static void ipi_call_function(unsigned int cpu, struct ipi_message *msg) 114static void ipi_call_function(unsigned int cpu, struct ipi_message *msg)