Skip to content

Commit

Permalink
pinctrl: remove remaining users of gpiochip_remove() retval
Browse files Browse the repository at this point in the history
Some drivers accidentally still use the return value from
gpiochip_remove(). Get rid of them so we can simplify this function
and get rid of the return value.

Cc: Abdoulaye Berthe <berthe.ab@gmail.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
  • Loading branch information
Linus Walleij committed Sep 23, 2014
1 parent 88d5e52 commit 2fcea6c
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 39 deletions.
14 changes: 2 additions & 12 deletions drivers/pinctrl/nomadik/pinctrl-abx500.c
Original file line number Diff line number Diff line change
Expand Up @@ -1298,10 +1298,7 @@ static int abx500_gpio_probe(struct platform_device *pdev)
return 0;

out_rem_chip:
err = gpiochip_remove(&pct->chip);
if (err)
dev_info(&pdev->dev, "failed to remove gpiochip\n");

gpiochip_remove(&pct->chip);
return ret;
}

Expand All @@ -1312,15 +1309,8 @@ static int abx500_gpio_probe(struct platform_device *pdev)
static int abx500_gpio_remove(struct platform_device *pdev)
{
struct abx500_pinctrl *pct = platform_get_drvdata(pdev);
int ret;

ret = gpiochip_remove(&pct->chip);
if (ret < 0) {
dev_err(pct->dev, "unable to remove gpiochip: %d\n",
ret);
return ret;
}

gpiochip_remove(&pct->chip);
return 0;
}

Expand Down
2 changes: 1 addition & 1 deletion drivers/pinctrl/nomadik/pinctrl-nomadik.c
Original file line number Diff line number Diff line change
Expand Up @@ -1261,7 +1261,7 @@ static int nmk_gpio_probe(struct platform_device *dev)
IRQ_TYPE_EDGE_FALLING);
if (ret) {
dev_err(&dev->dev, "could not add irqchip\n");
ret = gpiochip_remove(&nmk_chip->chip);
gpiochip_remove(&nmk_chip->chip);
return -ENODEV;
}
/* Then register the chain on the parent IRQ */
Expand Down
9 changes: 1 addition & 8 deletions drivers/pinctrl/qcom/pinctrl-msm.c
Original file line number Diff line number Diff line change
Expand Up @@ -903,16 +903,9 @@ EXPORT_SYMBOL(msm_pinctrl_probe);
int msm_pinctrl_remove(struct platform_device *pdev)
{
struct msm_pinctrl *pctrl = platform_get_drvdata(pdev);
int ret;

ret = gpiochip_remove(&pctrl->chip);
if (ret) {
dev_err(&pdev->dev, "Failed to remove gpiochip\n");
return ret;
}

gpiochip_remove(&pctrl->chip);
pinctrl_unregister(pctrl->pctrl);

return 0;
}
EXPORT_SYMBOL(msm_pinctrl_remove);
Expand Down
6 changes: 1 addition & 5 deletions drivers/pinctrl/samsung/pinctrl-exynos5440.c
Original file line number Diff line number Diff line change
Expand Up @@ -873,11 +873,7 @@ static int exynos5440_gpiolib_register(struct platform_device *pdev,
static int exynos5440_gpiolib_unregister(struct platform_device *pdev,
struct exynos5440_pinctrl_priv_data *priv)
{
int ret = gpiochip_remove(priv->gc);
if (ret) {
dev_err(&pdev->dev, "gpio chip remove failed\n");
return ret;
}
gpiochip_remove(priv->gc);
return 0;
}

Expand Down
15 changes: 4 additions & 11 deletions drivers/pinctrl/samsung/pinctrl-samsung.c
Original file line number Diff line number Diff line change
Expand Up @@ -945,9 +945,7 @@ static int samsung_gpiolib_register(struct platform_device *pdev,

fail:
for (--i, --bank; i >= 0; --i, --bank)
if (gpiochip_remove(&bank->gpio_chip))
dev_err(&pdev->dev, "gpio chip %s remove failed\n",
bank->gpio_chip.label);
gpiochip_remove(&bank->gpio_chip);
return ret;
}

Expand All @@ -957,16 +955,11 @@ static int samsung_gpiolib_unregister(struct platform_device *pdev,
{
struct samsung_pin_ctrl *ctrl = drvdata->ctrl;
struct samsung_pin_bank *bank = ctrl->pin_banks;
int ret = 0;
int i;

for (i = 0; !ret && i < ctrl->nr_banks; ++i, ++bank)
ret = gpiochip_remove(&bank->gpio_chip);

if (ret)
dev_err(&pdev->dev, "gpio chip remove failed\n");

return ret;
for (i = 0; i < ctrl->nr_banks; ++i, ++bank)
gpiochip_remove(&bank->gpio_chip);
return 0;
}

static const struct of_device_id samsung_pinctrl_dt_match[];
Expand Down
3 changes: 1 addition & 2 deletions drivers/pinctrl/sirf/pinctrl-sirf.c
Original file line number Diff line number Diff line change
Expand Up @@ -877,8 +877,7 @@ static int sirfsoc_gpio_probe(struct device_node *np)

out_no_range:
out_banks:
if (gpiochip_remove(&sgpio->chip.gc))
dev_err(&pdev->dev, "could not remove gpio chip\n");
gpiochip_remove(&sgpio->chip.gc);
out:
iounmap(regs);
return err;
Expand Down

0 comments on commit 2fcea6c

Please sign in to comment.