projects
/
GitHub
/
LineageOS
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8794fff
)
hexagon: export csum_partial_copy_nocheck
author
Arnd Bergmann
<arnd@arndb.de>
Fri, 6 Apr 2018 14:28:23 +0000
(16:28 +0200)
committer
Greg Kroah-Hartman
<gregkh@linuxfoundation.org>
Wed, 20 Jun 2018 19:02:52 +0000
(
04:02
+0900)
[ Upstream commit
330e261c35dfb969c48f996dbbc8b334b5ee8d9d
]
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>
arch/hexagon/lib/checksum.c
patch
|
blob
|
blame
|
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);