diff options
author | James Hogan <james.hogan@imgtec.com> | 2013-02-11 11:43:20 +0000 |
---|---|---|
committer | James Hogan <james.hogan@imgtec.com> | 2013-03-02 20:11:12 +0000 |
commit | f626dc704e761761b37efbb6320308461f159375 (patch) | |
tree | c9fe9bf98a74c359a6f4790a871ce3647a7eb5b4 | |
parent | 3d6b7bb0a2c518d24bc3036f9bbb6f3fb35462c3 (diff) | |
download | linux-3.10-f626dc704e761761b37efbb6320308461f159375.tar.gz linux-3.10-f626dc704e761761b37efbb6320308461f159375.tar.bz2 linux-3.10-f626dc704e761761b37efbb6320308461f159375.zip |
metag: export metag_code_cache_flush_all
Various file systems indirectly use metag_code_cache_flush_all(), so
when they're built as modules we get build errors like the following:
ERROR: "metag_code_cache_flush_all" [fs/xfs/xfs.ko] undefined!
Therefore export this function to modules to fix the errors. This was
hit by a randconfig build.
Signed-off-by: James Hogan <james.hogan@imgtec.com>
-rw-r--r-- | arch/metag/mm/cache.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/metag/mm/cache.c b/arch/metag/mm/cache.c index 4dd96e457fa..b5d3b2e7c16 100644 --- a/arch/metag/mm/cache.c +++ b/arch/metag/mm/cache.c @@ -460,6 +460,7 @@ void metag_code_cache_flush_all(const void *start) metag_phys_code_cache_flush(start, 4096); } +EXPORT_SYMBOL(metag_code_cache_flush_all); void metag_code_cache_flush(const void *start, int bytes) { |