]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
drivers: gpio: rcar: use devm_platform_ioremap_resource()
authorEnrico Weigelt, metux IT consult <info@metux.net>
Mon, 11 Mar 2019 18:55:06 +0000 (19:55 +0100)
committerLinus Walleij <linus.walleij@linaro.org>
Thu, 4 Apr 2019 17:04:27 +0000 (00:04 +0700)
Use the new helper that wraps the calls to platform_get_resource()
and devm_ioremap_resource() together.

Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
drivers/gpio/gpio-rcar.c

index 500a3596aaf449e4154591037a7d45120125330b..70e95fc4779fe26289c7b04b7cd25be16734a847 100644 (file)
@@ -430,7 +430,7 @@ static int gpio_rcar_parse_dt(struct gpio_rcar_priv *p, unsigned int *npins)
 static int gpio_rcar_probe(struct platform_device *pdev)
 {
        struct gpio_rcar_priv *p;
-       struct resource *io, *irq;
+       struct resource *irq;
        struct gpio_chip *gpio_chip;
        struct irq_chip *irq_chip;
        struct device *dev = &pdev->dev;
@@ -461,8 +461,7 @@ static int gpio_rcar_probe(struct platform_device *pdev)
                goto err0;
        }
 
-       io = platform_get_resource(pdev, IORESOURCE_MEM, 0);
-       p->base = devm_ioremap_resource(dev, io);
+       p->base = devm_platform_ioremap_resource(pdev, 0);
        if (IS_ERR(p->base)) {
                ret = PTR_ERR(p->base);
                goto err0;