crypto: jh7110: Comment RSA algo register

There are some issues in RSA algo, which will cause kernel crash.
So comment RSA algo register temporarily.
This commit should be reverted after the RSA issues are fixed.

Signed-off-by: Hal Feng <hal.feng@starfivetech.com>
This commit is contained in:
Hal Feng
2024-03-05 11:00:21 +08:00
parent 57dbc94614
commit 30cf034fcb

View File

@@ -194,14 +194,14 @@ static int starfive_cryp_probe(struct platform_device *pdev)
if (ret)
goto err_algs_hash;
ret = starfive_rsa_register_algs();
if (ret)
goto err_algs_rsa;
// ret = starfive_rsa_register_algs();
// if (ret)
// goto err_algs_rsa;
return 0;
err_algs_rsa:
starfive_hash_unregister_algs();
// err_algs_rsa:
// starfive_hash_unregister_algs();
err_algs_hash:
starfive_aes_unregister_algs();
err_algs_aes: