diff options
author | Arnd Bergmann <arnd@arndb.de> | 2018-04-06 16:28:23 +0200 |
---|---|---|
committer | Richard Kuo <rkuo@codeaurora.org> | 2018-05-01 15:49:50 -0500 |
commit | 330e261c35dfb969c48f996dbbc8b334b5ee8d9d (patch) | |
tree | d3a8796ac0b7aeddd9490b0fa2459355c1044940 /arch/hexagon | |
parent | a57ab96ef9dde231d4d46edba4d5f73720edc16a (diff) | |
download | linux-330e261c35dfb969c48f996dbbc8b334b5ee8d9d.tar.bz2 |
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 <arnd@arndb.de>
Signed-off-by: Richard Kuo <rkuo@codeaurora.org>
Diffstat (limited to 'arch/hexagon')
-rw-r--r-- | arch/hexagon/lib/checksum.c | 1 |
1 files changed, 1 insertions, 0 deletions
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); |