OSDN Git Service

crypto: allwinner - remove unneeded semicolon
authorChen Zhou <chenzhou10@huawei.com>
Mon, 16 Dec 2019 10:57:04 +0000 (18:57 +0800)
committerHerbert Xu <herbert@gondor.apana.org.au>
Fri, 27 Dec 2019 10:18:02 +0000 (18:18 +0800)
Fixes coccicheck warning:

./drivers/crypto/allwinner/sun8i-ce/sun8i-ce-core.c:558:52-53: Unneeded semicolon

Signed-off-by: Chen Zhou <chenzhou10@huawei.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
drivers/crypto/allwinner/sun8i-ce/sun8i-ce-core.c

index 73a7649..5373950 100644 (file)
@@ -555,7 +555,7 @@ static int sun8i_ce_probe(struct platform_device *pdev)
                return -EINVAL;
        }
 
-       ce->base = devm_platform_ioremap_resource(pdev, 0);;
+       ce->base = devm_platform_ioremap_resource(pdev, 0);
        if (IS_ERR(ce->base))
                return PTR_ERR(ce->base);