crypto: powerpc/sha256 - remove unneeded semicolon
authorYang Li <yang.lee@linux.alibaba.com>
Tue, 2 Feb 2021 03:17:30 +0000 (11:17 +0800)
committerHerbert Xu <herbert@gondor.apana.org.au>
Wed, 10 Feb 2021 06:55:57 +0000 (17:55 +1100)
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>
arch/powerpc/crypto/sha256-spe-glue.c

index a6e650a..ffedea7 100644 (file)
@@ -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;