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

Commit c139a595 authored by Paul Mundt's avatar Paul Mundt
Browse files

sh: Fix up cache-sh4 build on SMP.



mapping is unused on the SMP build, trigger a build error. Move it under
the ifdef.

Signed-off-by: default avatarPaul Mundt <lethal@linux-sh.org>
parent fc6191dd
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -106,9 +106,9 @@ static inline void flush_cache_4096(unsigned long start,
 */
static void sh4_flush_dcache_page(struct page *page)
{
#ifndef CONFIG_SMP
	struct address_space *mapping = page_mapping(page);

#ifndef CONFIG_SMP
	if (mapping && !mapping_mapped(mapping))
		set_bit(PG_dcache_dirty, &page->flags);
	else