aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorHannes Frederic Sowa <hannes@stressinduktion.org>2015-03-23 23:35:59 +0100
committerDavid S. Miller <davem@davemloft.net>2015-03-23 22:12:08 -0400
commitab2bb3241739870d417979a81843631e5588a2d7 (patch)
tree0d8ee9ed52c38dbd7ca473f07a12378f8028f37a /lib
parentMerge branch 'bcmgenet-next' (diff)
downloadlinux-dev-ab2bb3241739870d417979a81843631e5588a2d7.tar.xz
linux-dev-ab2bb3241739870d417979a81843631e5588a2d7.zip
lib: EXPORT_SYMBOL sha_init
We need this symbol later on in ipv6.ko, thus export it via EXPORT_SYMBOL like sha_transform already is. Signed-off-by: Hannes Frederic Sowa <hannes@stressinduktion.org> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'lib')
-rw-r--r--lib/sha1.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/sha1.c b/lib/sha1.c
index 1df191e04a24..5a56dfd7b99d 100644
--- a/lib/sha1.c
+++ b/lib/sha1.c
@@ -198,3 +198,4 @@ void sha_init(__u32 *buf)
buf[3] = 0x10325476;
buf[4] = 0xc3d2e1f0;
}
+EXPORT_SYMBOL(sha_init);