Skip to content
Snippets Groups Projects
Commit f626dc70 authored by James Hogan's avatar James Hogan
Browse files

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: default avatarJames Hogan <james.hogan@imgtec.com>
parent 3d6b7bb0
No related branches found
No related tags found
No related merge requests found
...@@ -460,6 +460,7 @@ void metag_code_cache_flush_all(const void *start) ...@@ -460,6 +460,7 @@ void metag_code_cache_flush_all(const void *start)
metag_phys_code_cache_flush(start, 4096); metag_phys_code_cache_flush(start, 4096);
} }
EXPORT_SYMBOL(metag_code_cache_flush_all);
void metag_code_cache_flush(const void *start, int bytes) void metag_code_cache_flush(const void *start, int bytes)
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment