aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/crypto
diff options
context:
space:
mode:
authorColin Ian King <colin.i.king@gmail.com>2021-12-07 18:58:09 +0000
committerHerbert Xu <herbert@gondor.apana.org.au>2021-12-17 16:59:46 +1100
commit015e42c85f1ec33894579626128b385d4780e883 (patch)
tree63aa6168e65b16c220418ce75acedeabadf2a919 /arch/x86/crypto
parentcrypto: hisilicon/qm - fix incorrect return value of hisi_qm_resume() (diff)
downloadlinux-dev-015e42c85f1ec33894579626128b385d4780e883.tar.xz
linux-dev-015e42c85f1ec33894579626128b385d4780e883.zip
crypto: x86/des3 - remove redundant assignment of variable nbytes
The variable nbytes is being assigned a value that is never read, it is being re-assigned in the following statement. The assignment is redundant and can be removed. Signed-off-by: Colin Ian King <colin.i.king@gmail.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'arch/x86/crypto')
-rw-r--r--arch/x86/crypto/des3_ede_glue.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/crypto/des3_ede_glue.c b/arch/x86/crypto/des3_ede_glue.c
index e7cb68a3db3b..787c234d2469 100644
--- a/arch/x86/crypto/des3_ede_glue.c
+++ b/arch/x86/crypto/des3_ede_glue.c
@@ -164,7 +164,7 @@ static int cbc_encrypt(struct skcipher_request *req)
err = skcipher_walk_virt(&walk, req, false);
- while ((nbytes = walk.nbytes)) {
+ while (walk.nbytes) {
nbytes = __cbc_encrypt(ctx, &walk);
err = skcipher_walk_done(&walk, nbytes);
}
@@ -243,7 +243,7 @@ static int cbc_decrypt(struct skcipher_request *req)
err = skcipher_walk_virt(&walk, req, false);
- while ((nbytes = walk.nbytes)) {
+ while (walk.nbytes) {
nbytes = __cbc_decrypt(ctx, &walk);
err = skcipher_walk_done(&walk, nbytes);
}