gpio: ep93xx: Use devm_ioremap_resource()
authorJingoo Han <jg1.han@samsung.com>
Tue, 27 May 2014 06:25:51 +0000 (15:25 +0900)
committerLinus Walleij <linus.walleij@linaro.org>
Tue, 27 May 2014 14:00:58 +0000 (16:00 +0200)
Use devm_ioremap_resource() because devm_request_and_ioremap() is
obsoleted by devm_ioremap_resource().

Signed-off-by: Jingoo Han <jg1.han@samsung.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
drivers/gpio/gpio-ep93xx.c

index dd39f27f3cb28a444b8d7ab14b741c44fb5ac465..dcc2bb4074ef5db8dc2adc5a3cbfc8c331b0de3a 100644 (file)
@@ -352,7 +352,7 @@ static int ep93xx_gpio_probe(struct platform_device *pdev)
                return -ENOMEM;
 
        res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
-       ep93xx_gpio->mmio_base = devm_request_and_ioremap(dev, res);
+       ep93xx_gpio->mmio_base = devm_ioremap_resource(dev, res);
        if (IS_ERR(ep93xx_gpio->mmio_base))
                return PTR_ERR(ep93xx_gpio->mmio_base);