sh: Don't export flush_dcache_all().

flush_dcache_all() is used internally by the SH-4 cache code, it is not
part of the exported cache API, so make it static and don't export it.

Signed-off-by: Paul Mundt <lethal@linux-sh.org>
This commit is contained in:
Paul Mundt
2009-08-15 11:22:50 +09:00
부모 27d59ec170
커밋 0b445dcaf3
2개의 변경된 파일1개의 추가작업 그리고 2개의 파일을 삭제

파일 보기

@@ -182,7 +182,7 @@ static void __uses_jump_to_uncached flush_icache_all(void)
local_irq_restore(flags);
}
void flush_dcache_all(void)
static inline void flush_dcache_all(void)
{
(*__flush_dcache_segment_fn)(0UL, boot_cpu_data.dcache.way_size);
wmb();