crypto: qce - Fix inconsistent indenting

Eliminate the follow smatch warning:

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

Reported-by: Abaci Robot <abaci@linux.alibaba.com>
Signed-off-by: Jiapeng Chong <jiapeng.chong@linux.alibaba.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
This commit is contained in:
Jiapeng Chong 2021-05-21 17:44:52 +08:00 committed by Herbert Xu
parent 3f4a8567b5
commit e5764377aa
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}
}