projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a57ab96
)
hexagon: export csum_partial_copy_nocheck
author
Arnd Bergmann
<arnd@arndb.de>
Fri, 6 Apr 2018 14:28:23 +0000
(16:28 +0200)
committer
Richard Kuo
<rkuo@codeaurora.org>
Tue, 1 May 2018 20:49:50 +0000
(15:49 -0500)
This is needed to link ipv6 as a loadable module, which in turn happens
in allmodconfig.
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Richard Kuo <rkuo@codeaurora.org>
arch/hexagon/lib/checksum.c
patch
|
blob
|
history
diff --git
a/arch/hexagon/lib/checksum.c
b/arch/hexagon/lib/checksum.c
index 617506d1a5596679b19b27af252c3199e61ab1f1..7cd0a2259269659b2b90222c074d06d18bc5b907 100644
(file)
--- a/
arch/hexagon/lib/checksum.c
+++ b/
arch/hexagon/lib/checksum.c
@@
-199,3
+199,4
@@
csum_partial_copy_nocheck(const void *src, void *dst, int len, __wsum sum)
memcpy(dst, src, len);
return csum_partial(dst, len, sum);
}
+EXPORT_SYMBOL(csum_partial_copy_nocheck);