crypto: sun8i-ss - fix removal of module
Removing the driver cause an oops due to the fact we clean an extra
channel.
Let's give the right index to the cleaning function.
Fixes: f08fcced6d
("crypto: allwinner - Add sun8i-ss cryptographic offloader")
Signed-off-by: Corentin Labbe <clabbe.montjoie@gmail.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
This commit is contained in:
parent
31899908a0
commit
7b3d853ead
|
@ -595,7 +595,7 @@ error_alg:
|
||||||
error_irq:
|
error_irq:
|
||||||
sun8i_ss_pm_exit(ss);
|
sun8i_ss_pm_exit(ss);
|
||||||
error_pm:
|
error_pm:
|
||||||
sun8i_ss_free_flows(ss, MAXFLOW);
|
sun8i_ss_free_flows(ss, MAXFLOW - 1);
|
||||||
return err;
|
return err;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -609,7 +609,7 @@ static int sun8i_ss_remove(struct platform_device *pdev)
|
||||||
debugfs_remove_recursive(ss->dbgfs_dir);
|
debugfs_remove_recursive(ss->dbgfs_dir);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
sun8i_ss_free_flows(ss, MAXFLOW);
|
sun8i_ss_free_flows(ss, MAXFLOW - 1);
|
||||||
|
|
||||||
sun8i_ss_pm_exit(ss);
|
sun8i_ss_pm_exit(ss);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue