Parcourir la source

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: Paul Mundt <lethal@linux-sh.org>
Paul Mundt il y a 16 ans
Parent
commit
c139a59587
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      arch/sh/mm/cache-sh4.c

+ 1 - 1
arch/sh/mm/cache-sh4.c

@@ -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