Commit b26120fd authored by YueHaibing's avatar YueHaibing Committed by Herbert Xu
Browse files

crypto: mediatek - use devm_platform_ioremap_resource() to simplify code



Use devm_platform_ioremap_resource() to simplify the code a bit.
This is detected by coccinelle.

Reported-by: default avatarHulk Robot <hulkci@huawei.com>
Signed-off-by: default avatarYueHaibing <yuehaibing@huawei.com>
Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
parent f8dab557
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -481,7 +481,6 @@ err_cleanup:

static int mtk_crypto_probe(struct platform_device *pdev)
{
	struct resource *res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
	struct mtk_cryp *cryp;
	int i, err;

@@ -489,7 +488,7 @@ static int mtk_crypto_probe(struct platform_device *pdev)
	if (!cryp)
		return -ENOMEM;

	cryp->base = devm_ioremap_resource(&pdev->dev, res);
	cryp->base = devm_platform_ioremap_resource(pdev, 0);
	if (IS_ERR(cryp->base))
		return PTR_ERR(cryp->base);