summaryrefslogtreecommitdiffstats
path: root/crypto/curve25519-generic.c
diff options
context:
space:
mode:
authorXiu Jianfeng <xiujianfeng@huawei.com>2022-09-15 11:36:15 +0800
committerHerbert Xu <herbert@gondor.apana.org.au>2022-09-24 16:14:43 +0800
commit33837be33367172d66d1f2bd6964cc41448e6e7c (patch)
tree9d5710ddbe45dbc4a486fa34f61baec36073dc92 /crypto/curve25519-generic.c
parent1b79573de717cfabe28221a98afaa6a3ff0e7458 (diff)
downloadlinux-33837be33367172d66d1f2bd6964cc41448e6e7c.tar.bz2
crypto: add __init/__exit annotations to init/exit funcs
Add missing __init/__exit annotations to init/exit funcs. Signed-off-by: Xiu Jianfeng <xiujianfeng@huawei.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto/curve25519-generic.c')
-rw-r--r--crypto/curve25519-generic.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/curve25519-generic.c b/crypto/curve25519-generic.c
index bd88fd571393..d055b0784c77 100644
--- a/crypto/curve25519-generic.c
+++ b/crypto/curve25519-generic.c
@@ -72,12 +72,12 @@ static struct kpp_alg curve25519_alg = {
.max_size = curve25519_max_size,
};
-static int curve25519_init(void)
+static int __init curve25519_init(void)
{
return crypto_register_kpp(&curve25519_alg);
}
-static void curve25519_exit(void)
+static void __exit curve25519_exit(void)
{
crypto_unregister_kpp(&curve25519_alg);
}