diff options
author | Xiu Jianfeng <xiujianfeng@huawei.com> | 2022-09-15 05:36:15 +0200 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2022-09-24 10:14:43 +0200 |
commit | 33837be33367172d66d1f2bd6964cc41448e6e7c (patch) | |
tree | 9d5710ddbe45dbc4a486fa34f61baec36073dc92 /crypto/sm2.c | |
parent | crypto: blake2s - revert unintended config addition of CRYPTO_BLAKE2S (diff) | |
download | linux-33837be33367172d66d1f2bd6964cc41448e6e7c.tar.xz linux-33837be33367172d66d1f2bd6964cc41448e6e7c.zip |
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/sm2.c')
-rw-r--r-- | crypto/sm2.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/sm2.c b/crypto/sm2.c index f3e1592965c0..ed9307dac3d1 100644 --- a/crypto/sm2.c +++ b/crypto/sm2.c @@ -441,12 +441,12 @@ static struct akcipher_alg sm2 = { }, }; -static int sm2_init(void) +static int __init sm2_init(void) { return crypto_register_akcipher(&sm2); } -static void sm2_exit(void) +static void __exit sm2_exit(void) { crypto_unregister_akcipher(&sm2); } |