crypto: powepc/sha1 - remove unneeded semicolon
authorYang Li <yang.lee@linux.alibaba.com>
Mon, 8 Feb 2021 09:10:38 +0000 (17:10 +0800)
committerHerbert Xu <herbert@gondor.apana.org.au>
Sun, 7 Mar 2021 04:13:14 +0000 (15:13 +1100)
Eliminate the following coccicheck warning:
./arch/powerpc/crypto/sha1-spe-glue.c:110: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>
arch/powerpc/crypto/sha1-spe-glue.c

index b1e577cbf00ca73c4460818722f8ab5f54c928f6..88e8ea73bfa714d22a3790b64f42b55b57ced936 100644 (file)
@@ -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;