mirror of
https://github.com/torvalds/linux.git
synced 2024-11-16 00:52:01 +00:00
drivers: gpio: vf610: use devm_platform_ioremap_resource()
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>
This commit is contained in:
parent
83fa76b65c
commit
df53665b4f
@ -251,7 +251,6 @@ static int vf610_gpio_probe(struct platform_device *pdev)
|
|||||||
struct device *dev = &pdev->dev;
|
struct device *dev = &pdev->dev;
|
||||||
struct device_node *np = dev->of_node;
|
struct device_node *np = dev->of_node;
|
||||||
struct vf610_gpio_port *port;
|
struct vf610_gpio_port *port;
|
||||||
struct resource *iores;
|
|
||||||
struct gpio_chip *gc;
|
struct gpio_chip *gc;
|
||||||
int i;
|
int i;
|
||||||
int ret;
|
int ret;
|
||||||
@ -261,13 +260,11 @@ static int vf610_gpio_probe(struct platform_device *pdev)
|
|||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
|
|
||||||
port->sdata = of_device_get_match_data(dev);
|
port->sdata = of_device_get_match_data(dev);
|
||||||
iores = platform_get_resource(pdev, IORESOURCE_MEM, 0);
|
port->base = devm_platform_ioremap_resource(pdev, 0);
|
||||||
port->base = devm_ioremap_resource(dev, iores);
|
|
||||||
if (IS_ERR(port->base))
|
if (IS_ERR(port->base))
|
||||||
return PTR_ERR(port->base);
|
return PTR_ERR(port->base);
|
||||||
|
|
||||||
iores = platform_get_resource(pdev, IORESOURCE_MEM, 1);
|
port->gpio_base = devm_platform_ioremap_resource(pdev, 1);
|
||||||
port->gpio_base = devm_ioremap_resource(dev, iores);
|
|
||||||
if (IS_ERR(port->gpio_base))
|
if (IS_ERR(port->gpio_base))
|
||||||
return PTR_ERR(port->gpio_base);
|
return PTR_ERR(port->gpio_base);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user