]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
drivers: gpio: vf610: use devm_platform_ioremap_resource()
authorEnrico Weigelt, metux IT consult <info@metux.net>
Mon, 11 Mar 2019 18:55:16 +0000 (19:55 +0100)
committerLinus Walleij <linus.walleij@linaro.org>
Thu, 4 Apr 2019 17:04:28 +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>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
drivers/gpio/gpio-vf610.c

index 541fa6ac399d24b288d7f148717874d2392e9023..4b86a2dee7f2d21ab2a1190c056a4fbeac612610 100644 (file)
@@ -251,7 +251,6 @@ static int vf610_gpio_probe(struct platform_device *pdev)
        struct device *dev = &pdev->dev;
        struct device_node *np = dev->of_node;
        struct vf610_gpio_port *port;
-       struct resource *iores;
        struct gpio_chip *gc;
        int i;
        int ret;
@@ -261,13 +260,11 @@ static int vf610_gpio_probe(struct platform_device *pdev)
                return -ENOMEM;
 
        port->sdata = of_device_get_match_data(dev);
-       iores = platform_get_resource(pdev, IORESOURCE_MEM, 0);
-       port->base = devm_ioremap_resource(dev, iores);
+       port->base = devm_platform_ioremap_resource(pdev, 0);
        if (IS_ERR(port->base))
                return PTR_ERR(port->base);
 
-       iores = platform_get_resource(pdev, IORESOURCE_MEM, 1);
-       port->gpio_base = devm_ioremap_resource(dev, iores);
+       port->gpio_base = devm_platform_ioremap_resource(pdev, 1);
        if (IS_ERR(port->gpio_base))
                return PTR_ERR(port->gpio_base);