Skip to content

Commit

Permalink
crypto: qce - Fix inconsistent indenting
Browse files Browse the repository at this point in the history
Eliminate the follow smatch warning:

drivers/crypto/qce/aead.c:85 qce_aead_done() warn: inconsistent
indenting.

Reported-by: Abaci Robot <[email protected]>
Signed-off-by: Jiapeng Chong <[email protected]>
Signed-off-by: Herbert Xu <[email protected]>
  • Loading branch information
Jiapeng Chong authored and herbertx committed May 28, 2021
1 parent 3f4a856 commit e576437
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/crypto/qce/aead.c
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ static void qce_aead_done(void *data)
ret = memcmp(result_buf->auth_iv, tag, ctx->authsize);
if (ret) {
pr_err("Bad message error\n");
error = -EBADMSG;
error = -EBADMSG;
}
}

Expand Down

0 comments on commit e576437

Please sign in to comment.