From: Yang Li Date: Mon, 8 Feb 2021 09:10:38 +0000 (+0800) Subject: crypto: powepc/sha1 - remove unneeded semicolon X-Git-Tag: v5.13-rc1~200^2~175 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=da3c6c836fb1a0b9f08a7efabbfb7e31a0c816f7;p=thirdparty%2Fkernel%2Flinux.git crypto: powepc/sha1 - remove unneeded semicolon Eliminate the following coccicheck warning: ./arch/powerpc/crypto/sha1-spe-glue.c:110:2-3: Unneeded semicolon Reported-by: Abaci Robot Signed-off-by: Yang Li Signed-off-by: Herbert Xu --- diff --git a/arch/powerpc/crypto/sha1-spe-glue.c b/arch/powerpc/crypto/sha1-spe-glue.c index b1e577cbf00ca..88e8ea73bfa71 100644 --- a/arch/powerpc/crypto/sha1-spe-glue.c +++ b/arch/powerpc/crypto/sha1-spe-glue.c @@ -107,7 +107,7 @@ static int ppc_spe_sha1_update(struct shash_desc *desc, const u8 *data, src += bytes; len -= bytes; - }; + } memcpy((char *)sctx->buffer, src, len); return 0;