diff options
author | Paul Mundt <lethal@linux-sh.org> | 2008-09-05 05:00:29 -0400 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2008-09-07 21:35:06 -0400 |
commit | 205a3b4328de1c8ddd99ddd5092bed1344068213 (patch) | |
tree | 05fbc4d81a46b4f9297152315a8a00576d6c8f7b /arch/sh/mm | |
parent | 6907e6a601a4fd442535d977886bbd3761aa2b56 (diff) |
sh: uninline flush_icache_all().
This uses jump_to_uncached() which is now given the noinline attribute
due to the special section mapping. Kill off the inline attribute to
fix up compilation failure.
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 1fdc8d90254a..5cfe08dbb59e 100644 --- a/arch/sh/mm/cache-sh4.c +++ b/arch/sh/mm/cache-sh4.c | |||
@@ -261,7 +261,7 @@ void flush_dcache_page(struct page *page) | |||
261 | } | 261 | } |
262 | 262 | ||
263 | /* TODO: Selective icache invalidation through IC address array.. */ | 263 | /* TODO: Selective icache invalidation through IC address array.. */ |
264 | static inline void __uses_jump_to_uncached flush_icache_all(void) | 264 | static void __uses_jump_to_uncached flush_icache_all(void) |
265 | { | 265 | { |
266 | unsigned long flags, ccr; | 266 | unsigned long flags, ccr; |
267 | 267 | ||