]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
crypto: mediatek - use devm_platform_ioremap_resource() to simplify code
authorYueHaibing <yuehaibing@huawei.com>
Fri, 2 Aug 2019 13:28:03 +0000 (21:28 +0800)
committerHerbert Xu <herbert@gondor.apana.org.au>
Fri, 9 Aug 2019 05:12:00 +0000 (15:12 +1000)
Use devm_platform_ioremap_resource() to simplify the code a bit.
This is detected by coccinelle.

Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: YueHaibing <yuehaibing@huawei.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
drivers/crypto/mediatek/mtk-platform.c

index 4f43318ca14b5189b233743cebedc94640676d1f..7e3ad085b5bdd2b9c213789c18fa8df46d7f85ae 100644 (file)
@@ -481,7 +481,6 @@ static int mtk_desc_ring_alloc(struct mtk_cryp *cryp)
 
 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);