Commit e5764377 authored by Jiapeng Chong's avatar Jiapeng Chong Committed by Herbert Xu

crypto: qce - Fix inconsistent indenting

Eliminate the follow smatch warning:

drivers/crypto/qce/aead.c:85 qce_aead_done() warn: inconsistent
indenting.
Reported-by: default avatarAbaci Robot <abaci@linux.alibaba.com>
Signed-off-by: default avatarJiapeng Chong <jiapeng.chong@linux.alibaba.com>
Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
parent 3f4a8567
...@@ -82,7 +82,7 @@ static void qce_aead_done(void *data) ...@@ -82,7 +82,7 @@ static void qce_aead_done(void *data)
ret = memcmp(result_buf->auth_iv, tag, ctx->authsize); ret = memcmp(result_buf->auth_iv, tag, ctx->authsize);
if (ret) { if (ret) {
pr_err("Bad message error\n"); pr_err("Bad message error\n");
error = -EBADMSG; error = -EBADMSG;
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment