From: Arnd Bergmann Date: Fri, 6 Apr 2018 14:28:23 +0000 (+0200) Subject: hexagon: export csum_partial_copy_nocheck X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=330e261c35dfb969c48f996dbbc8b334b5ee8d9d;p=openwrt%2Fstaging%2Fblogic.git hexagon: export csum_partial_copy_nocheck This is needed to link ipv6 as a loadable module, which in turn happens in allmodconfig. Signed-off-by: Arnd Bergmann Signed-off-by: Richard Kuo --- diff --git a/arch/hexagon/lib/checksum.c b/arch/hexagon/lib/checksum.c index 617506d1a559..7cd0a2259269 100644 --- 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);