Skip to content

Commit

Permalink
crypto: allwinner - remove unneeded semicolon
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Chen Zhou authored and Herbert Xu committed Dec 27, 2019
1 parent c6d633a commit eb5b915
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/crypto/allwinner/sun8i-ce/sun8i-ce-core.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down

0 comments on commit eb5b915

Please sign in to comment.