diff options
author | Paul Mundt <lethal@linux-sh.org> | 2009-08-20 15:24:41 +0900 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2009-08-20 15:24:41 +0900 |
commit | c139a595878b0e8156476668e3d5c27b6aca7624 (patch) | |
tree | d072bae88bc1637f1c23504ee55e4aad3db67644 /arch/sh/mm | |
parent | fc6191dd301e3bc8cbb142aab1a2ec4e699cb2de (diff) | |
download | linux-stable-c139a595878b0e8156476668e3d5c27b6aca7624.tar.gz linux-stable-c139a595878b0e8156476668e3d5c27b6aca7624.tar.bz2 linux-stable-c139a595878b0e8156476668e3d5c27b6aca7624.zip |
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>
Diffstat (limited to 'arch/sh/mm')
-rw-r--r-- | arch/sh/mm/cache-sh4.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/sh/mm/cache-sh4.c b/arch/sh/mm/cache-sh4.c index 05cb04bc3940..6c2db1401080 100644 --- a/arch/sh/mm/cache-sh4.c +++ b/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 |