aboutsummaryrefslogtreecommitdiffstats
path: root/lib/crypto/blake2s-generic.c
diff options
context:
space:
mode:
authorNick Alcock <[email protected]>2023-03-20 10:20:10 +0000
committerLuis Chamberlain <[email protected]>2023-04-13 20:13:51 +0000
commitef5bbd1172f4bd7b9162654d9b167e89afe82867 (patch)
treee13a7e9d5ecd1d2d976b9e8d3574af58a6ba88e5 /lib/crypto/blake2s-generic.c
parentcrypto: remove MODULE_LICENSE in non-modules (diff)
downloadkernel-ef5bbd1172f4bd7b9162654d9b167e89afe82867.tar.gz
kernel-ef5bbd1172f4bd7b9162654d9b167e89afe82867.zip
crypto: blake2s: remove module-related code
Now blake2s-generic.c can no longer be a module, drop all remaining module-related code as well. Signed-off-by: Nick Alcock <[email protected]> Requested-by: Herbert Xu <[email protected]> Cc: Luis Chamberlain <[email protected]> Cc: [email protected] Cc: [email protected] Cc: Hitomi Hasegawa <[email protected]> Cc: Herbert Xu <[email protected]> Cc: "David S. Miller" <[email protected]> Cc: [email protected] Signed-off-by: Luis Chamberlain <[email protected]>
Diffstat (limited to 'lib/crypto/blake2s-generic.c')
-rw-r--r--lib/crypto/blake2s-generic.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/crypto/blake2s-generic.c b/lib/crypto/blake2s-generic.c
index 4ffe3d927920..3b6dcfdd9628 100644
--- a/lib/crypto/blake2s-generic.c
+++ b/lib/crypto/blake2s-generic.c
@@ -12,7 +12,6 @@
#include <linux/types.h>
#include <linux/string.h>
#include <linux/kernel.h>
-#include <linux/module.h>
#include <linux/init.h>
#include <linux/bug.h>
#include <asm/unaligned.h>
@@ -109,6 +108,3 @@ void blake2s_compress_generic(struct blake2s_state *state, const u8 *block,
}
EXPORT_SYMBOL(blake2s_compress_generic);
-
-MODULE_DESCRIPTION("BLAKE2s hash function");
-MODULE_AUTHOR("Jason A. Donenfeld <[email protected]>");