mirror of https://gitee.com/openkylin/linux.git
staging: sep: remove assignment to i and j in sep_crypto_setup
the i and j are used in for loop and they assigned to zeros in the for loop, so no need to assign them to zeros again. Signed-off-by: Devendra Naga <devendra.aaru@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
7b63c5772f
commit
c095454e4b
|
@ -3908,13 +3908,9 @@ int sep_crypto_setup(void)
|
|||
return -ENOMEM;
|
||||
}
|
||||
|
||||
i = 0;
|
||||
j = 0;
|
||||
|
||||
spin_lock_init(&queue_lock);
|
||||
|
||||
err = 0;
|
||||
|
||||
for (i = 0; i < ARRAY_SIZE(hash_algs); i++) {
|
||||
err = crypto_register_ahash(&hash_algs[i]);
|
||||
if (err)
|
||||
|
|
Loading…
Reference in New Issue