diff options
-rw-r--r-- | arch/blackfin/mach-common/smp.c | 6 |
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 | ||
114 | static void ipi_call_function(unsigned int cpu, struct ipi_message *msg) | 114 | static void ipi_call_function(unsigned int cpu, struct ipi_message *msg) |