summaryrefslogtreecommitdiffstats
path: root/arch/powerpc/crypto
diff options
context:
space:
mode:
authorYang Li <yang.lee@linux.alibaba.com>2021-02-02 04:17:30 +0100
committerHerbert Xu <herbert@gondor.apana.org.au>2021-02-10 07:55:57 +0100
commit578f23d359bf7c988b1c9026d4711de7112b0c1c (patch)
treed8eb059c86be0c7ed04a1c41f176e981708bff8e /arch/powerpc/crypto
parentcrypto: caam - Replace DEFINE_SIMPLE_ATTRIBUTE with DEFINE_DEBUGFS_ATTRIBUTE (diff)
downloadlinux-578f23d359bf7c988b1c9026d4711de7112b0c1c.tar.xz
linux-578f23d359bf7c988b1c9026d4711de7112b0c1c.zip
crypto: powerpc/sha256 - remove unneeded semicolon
Eliminate the following coccicheck warning: ./arch/powerpc/crypto/sha256-spe-glue.c:132:2-3: Unneeded semicolon Reported-by: Abaci Robot <abaci@linux.alibaba.com> Signed-off-by: Yang Li <yang.lee@linux.alibaba.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'arch/powerpc/crypto')
-rw-r--r--arch/powerpc/crypto/sha256-spe-glue.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/crypto/sha256-spe-glue.c b/arch/powerpc/crypto/sha256-spe-glue.c
index a6e650a97d8f..ffedea7e4bef 100644
--- a/arch/powerpc/crypto/sha256-spe-glue.c
+++ b/arch/powerpc/crypto/sha256-spe-glue.c
@@ -129,7 +129,7 @@ static int ppc_spe_sha256_update(struct shash_desc *desc, const u8 *data,
src += bytes;
len -= bytes;
- };
+ }
memcpy((char *)sctx->buf, src, len);
return 0;