1
0
Fork 0

hexagon: export csum_partial_copy_nocheck

[ Upstream commit 330e261c35 ]

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>
Signed-off-by: Sasha Levin <alexander.levin@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
pull/10/head
Arnd Bergmann 2018-04-06 16:28:23 +02:00 committed by Greg Kroah-Hartman
parent 8794fff6f4
commit 09e12b91d1
1 changed files with 1 additions and 0 deletions

View File

@ -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);