Skip to content

Commit

Permalink
gpio: rcar: Use local variable gpio_chip in gpio_rcar_probe()
Browse files Browse the repository at this point in the history
The existing variable gpio_chip already points to the gpiochip instance,
hence use it everywhere.

Signed-off-by: Geert Uytterhoeven <[email protected]>
Signed-off-by: Linus Walleij <[email protected]>
  • Loading branch information
geertu authored and linusw committed Mar 26, 2015
1 parent e189ca5 commit 4d84b9e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions drivers/gpio/gpio-rcar.c
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,7 @@ static int gpio_rcar_probe(struct platform_device *pdev)
goto err0;
}

ret = gpiochip_irqchip_add(&p->gpio_chip, irq_chip, p->config.irq_base,
ret = gpiochip_irqchip_add(gpio_chip, irq_chip, p->config.irq_base,
handle_level_irq, IRQ_TYPE_NONE);
if (ret) {
dev_err(dev, "cannot add irqchip\n");
Expand All @@ -431,7 +431,7 @@ static int gpio_rcar_probe(struct platform_device *pdev)

/* warn in case of mismatch if irq base is specified */
if (p->config.irq_base) {
ret = irq_find_mapping(p->gpio_chip.irqdomain, 0);
ret = irq_find_mapping(gpio_chip->irqdomain, 0);
if (p->config.irq_base != ret)
dev_warn(dev, "irq base mismatch (%u/%u)\n",
p->config.irq_base, ret);
Expand All @@ -447,7 +447,7 @@ static int gpio_rcar_probe(struct platform_device *pdev)
return 0;

err1:
gpiochip_remove(&p->gpio_chip);
gpiochip_remove(gpio_chip);
err0:
pm_runtime_put(dev);
pm_runtime_disable(dev);
Expand Down

0 comments on commit 4d84b9e

Please sign in to comment.