aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/crypto
diff options
context:
space:
mode:
authorChen Zhou <chenzhou10@huawei.com>2019-12-16 18:57:04 +0800
committerHerbert Xu <herbert@gondor.apana.org.au>2019-12-27 18:18:02 +0800
commiteb5b9154bfb3617254776b4ef80a31ac4530c19b (patch)
tree6f0bca862ff27d628849885422a5607318efea86 /drivers/crypto
parentcrypto: algapi - make unregistration functions return void (diff)
downloadlinux-dev-eb5b9154bfb3617254776b4ef80a31ac4530c19b.tar.xz
linux-dev-eb5b9154bfb3617254776b4ef80a31ac4530c19b.zip
crypto: allwinner - remove unneeded semicolon
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>
Diffstat (limited to 'drivers/crypto')
-rw-r--r--drivers/crypto/allwinner/sun8i-ce/sun8i-ce-core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/crypto/allwinner/sun8i-ce/sun8i-ce-core.c b/drivers/crypto/allwinner/sun8i-ce/sun8i-ce-core.c
index 73a7649f915d..53739507c8c2 100644
--- a/drivers/crypto/allwinner/sun8i-ce/sun8i-ce-core.c
+++ b/drivers/crypto/allwinner/sun8i-ce/sun8i-ce-core.c
@@ -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);