Merge tag 'clk-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux
[platform/kernel/linux-starfive.git] / crypto / rsa.c
index 0e555ee..c50f2d2 100644 (file)
@@ -327,7 +327,7 @@ static struct akcipher_alg rsa = {
        },
 };
 
-static int rsa_init(void)
+static int __init rsa_init(void)
 {
        int err;
 
@@ -344,7 +344,7 @@ static int rsa_init(void)
        return 0;
 }
 
-static void rsa_exit(void)
+static void __exit rsa_exit(void)
 {
        crypto_unregister_template(&rsa_pkcs1pad_tmpl);
        crypto_unregister_akcipher(&rsa);