summaryrefslogtreecommitdiff
path: root/arch/score/mm/cache.c
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2014-10-08 13:37:24 +0400
committerLinus Torvalds <torvalds@linux-foundation.org>2014-10-08 13:37:24 +0400
commit8a9e838f59115e55ca206fb5f0b567d7b3540517 (patch)
tree4182bc74544fbc21b49c0b5cbcbe21686e8da1af /arch/score/mm/cache.c
parentf8e4fae2e79d2d293fc490ede87be44c9b215d9e (diff)
parent1742b630e43a6ccca67cf634704e8b76d128947f (diff)
downloadlinux-8a9e838f59115e55ca206fb5f0b567d7b3540517.tar.xz
Merge tag 'for-linus-20141006' of git://github.com/sctscore/linux-off
Pull S+core updates from Lennox Wu: "Three of the patches are for building allmodconfig, and the others are for removing useless flags" * tag 'for-linus-20141006' of git://github.com/sctscore/linux-off: score: Remove GENERIC_HAS_IOMAP arch/score/include/asm/Kbuild: Add generic "serial.h" score: remove deprecated IRQF_DISABLED arch/score/mm/cache.c: Export 'flush_icache_range' arch: score: Export necessary symbols in related files
Diffstat (limited to 'arch/score/mm/cache.c')
-rw-r--r--arch/score/mm/cache.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/score/mm/cache.c b/arch/score/mm/cache.c
index f85ec1a7c88e..b4bcfd3e8393 100644
--- a/arch/score/mm/cache.c
+++ b/arch/score/mm/cache.c
@@ -72,6 +72,7 @@ void flush_dcache_page(struct page *page)
addr = (unsigned long) page_address(page);
flush_data_cache_page(addr);
}
+EXPORT_SYMBOL(flush_dcache_page);
/* called by update_mmu_cache. */
void __update_cache(struct vm_area_struct *vma, unsigned long address,
@@ -277,3 +278,4 @@ void flush_icache_range(unsigned long start, unsigned long end)
start += L1_CACHE_BYTES;
}
}
+EXPORT_SYMBOL(flush_icache_range);