Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5f362c91 authored by Mike Frysinger's avatar Mike Frysinger
Browse files

Blackfin: SMP: use standard cache functions

parent ef9d8c25
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -105,10 +105,10 @@ static void ipi_flush_icache(void *info)
	struct blackfin_flush_data *fdata = info;

	/* Invalidate the memory holding the bounds of the flushed region. */
	blackfin_dcache_invalidate_range((unsigned long)fdata,
	invalidate_dcache_range((unsigned long)fdata,
		(unsigned long)fdata + sizeof(*fdata));

	blackfin_icache_flush_range(fdata->start, fdata->end);
	flush_icache_range(fdata->start, fdata->end);
}

static void ipi_call_function(unsigned int cpu, struct ipi_message *msg)