summaryrefslogtreecommitdiff
path: root/arch/score/lib
diff options
context:
space:
mode:
authorChen Gang <gang.chen.5i5j@gmail.com>2014-07-09 16:48:45 +0800
committerLennox Wu <lennox.wu@gmail.com>2014-10-05 01:18:16 +0800
commit51de2f11f5d4d51ad3a77ea3ef67e7b66f6709f5 (patch)
treed3c2ac8dd71d81051d24000130aeaaece357b70e /arch/score/lib
parent58586869599f6bb38aeca71a847cd77bfea74808 (diff)
arch: score: Export necessary symbols in related files
'csum_partial_copy_from_user' and 'flush_dcache_page' are also needed by outside modules, so need export them in the related files. The related error (with allmodconfig under score): MODPOST 1365 modules ERROR: "csum_partial_copy_from_user" [net/rxrpc/af-rxrpc.ko] undefined! ERROR: "flush_dcache_page" [net/sunrpc/sunrpc.ko] undefined! Acked-by: Lennox Wu <lennox.wu@gmail.com> Signed-off-by: Chen Gang <gang.chen.5i5j@gmail.com>
Diffstat (limited to 'arch/score/lib')
-rw-r--r--arch/score/lib/checksum_copy.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/score/lib/checksum_copy.c b/arch/score/lib/checksum_copy.c
index 04565dd3ded8..9b770b30e8a5 100644
--- a/arch/score/lib/checksum_copy.c
+++ b/arch/score/lib/checksum_copy.c
@@ -50,3 +50,4 @@ unsigned int csum_partial_copy_from_user(const char *src, char *dst,
return csum_partial(dst, len, sum);
}
+EXPORT_SYMBOL(csum_partial_copy_from_user);