lkml.org 
[lkml]   [2020]   [Oct]   [15]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH] crypto: ecrdsa - use subsys_initcall instead of module_init
    Date
    All templates and generic algorithms have been registered in
    subsys_initcall instead of module_init. The ecrdsa algorithm
    happened to be missed. Here is a fix for it.

    Cc: Vitaly Chikunov <vt@altlinux.org>
    Signed-off-by: Tianjia Zhang <tianjia.zhang@linux.alibaba.com>
    ---
    crypto/ecrdsa.c | 2 +-
    1 file changed, 1 insertion(+), 1 deletion(-)

    diff --git a/crypto/ecrdsa.c b/crypto/ecrdsa.c
    index 6a3fd09057d0..ca9a34356f80 100644
    --- a/crypto/ecrdsa.c
    +++ b/crypto/ecrdsa.c
    @@ -288,7 +288,7 @@ static void __exit ecrdsa_mod_fini(void)
    crypto_unregister_akcipher(&ecrdsa_alg);
    }

    -module_init(ecrdsa_mod_init);
    +subsys_initcall(ecrdsa_mod_init);
    module_exit(ecrdsa_mod_fini);

    MODULE_LICENSE("GPL");
    --
    2.19.1.3.ge56e4f7
    \
     
     \ /
      Last update: 2020-10-15 13:03    [W:4.092 / U:1.040 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site