]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
pinctrl: mediatek: use devm_platform_ioremap_resource() to simplify code
authorYueHaibing <yuehaibing@huawei.com>
Wed, 16 Oct 2019 14:10:53 +0000 (22:10 +0800)
committerLinus Walleij <linus.walleij@linaro.org>
Thu, 24 Oct 2019 12:03:27 +0000 (14:03 +0200)
Use devm_platform_ioremap_resource() to simplify the code a bit.
This is detected by coccinelle.

Signed-off-by: YueHaibing <yuehaibing@huawei.com>
Link: https://lore.kernel.org/r/20191016141053.23740-1-yuehaibing@huawei.com
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
drivers/pinctrl/mediatek/pinctrl-mtk-common.c

index 53f52b9a0acdcbf2ad867d4b39691c4744f58e81..67f8444f7a0cb6a5eb725c24ca90b0a8241850ca 100644 (file)
@@ -982,7 +982,6 @@ static const struct mtk_eint_xt mtk_eint_xt = {
 static int mtk_eint_init(struct mtk_pinctrl *pctl, struct platform_device *pdev)
 {
        struct device_node *np = pdev->dev.of_node;
-       struct resource *res;
 
        if (!of_property_read_bool(np, "interrupt-controller"))
                return -ENODEV;
@@ -991,8 +990,7 @@ static int mtk_eint_init(struct mtk_pinctrl *pctl, struct platform_device *pdev)
        if (!pctl->eint)
                return -ENOMEM;
 
-       res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
-       pctl->eint->base = devm_ioremap_resource(&pdev->dev, res);
+       pctl->eint->base = devm_platform_ioremap_resource(pdev, 0);
        if (IS_ERR(pctl->eint->base))
                return PTR_ERR(pctl->eint->base);