Forum | Documentation | Website | Blog

Skip to content
Snippets Groups Projects
Commit 366d6aef authored by Andrew Sharp's avatar Andrew Sharp Committed by Ralf Baechle
Browse files

[MIPS] Fix uniprocessor Sibyte builds.


Signed-off-by: default avatarAndrew Sharp <tigerand@gmail.com>
Signed-off-by: default avatarRalf Baechle <ralf@linux-mips.org>
parent 7da8a581
No related merge requests found
......@@ -259,6 +259,12 @@ static void sb1_flush_cache_data_page(unsigned long addr)
on_each_cpu(sb1_flush_cache_data_page_ipi, (void *) addr, 1, 1);
}
#else
static void local_sb1_flush_cache_data_page(unsigned long addr)
{
__sb1_writeback_inv_dcache_range(addr, addr + PAGE_SIZE);
}
void sb1_flush_cache_data_page(unsigned long)
__attribute__((alias("local_sb1_flush_cache_data_page")));
#endif
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment