kernel/arch/mips/crypto/chacha-glue.c
.. .. @@ -128,13 +128,13 @@ 128 128 129 129 static int __init chacha_simd_mod_init(void) 130 130 { 131 - return IS_REACHABLE(CONFIG_CRYPTO_BLKCIPHER) ?131 + return IS_REACHABLE(CONFIG_CRYPTO_SKCIPHER) ?132 132 crypto_register_skciphers(algs, ARRAY_SIZE(algs)) : 0; 133 133 } 134 134 135 135 static void __exit chacha_simd_mod_fini(void) 136 136 { 137 - if (IS_REACHABLE(CONFIG_CRYPTO_BLKCIPHER))137 + if (IS_REACHABLE(CONFIG_CRYPTO_SKCIPHER))138 138 crypto_unregister_skciphers(algs, ARRAY_SIZE(algs)); 139 139 } 140 140