From: Yang Li Date: Tue, 2 Feb 2021 03:17:30 +0000 (+0800) Subject: crypto: powerpc/sha256 - remove unneeded semicolon X-Git-Tag: v5.12-rc1~124^2~25 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=578f23d359bf7c988b1c9026d4711de7112b0c1c;p=thirdparty%2Fkernel%2Flinux.git 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 Signed-off-by: Yang Li Signed-off-by: Herbert Xu --- diff --git a/arch/powerpc/crypto/sha256-spe-glue.c b/arch/powerpc/crypto/sha256-spe-glue.c index a6e650a97d8f4..ffedea7e4befb 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;