gpio: arizona: Tidy up probe error path
There is some unnecessary complexity in the error path which now things are converted to devm is actually very simple. This patch simplifies things. Signed-off-by: Charles Keepax <ckeepax@opensource.wolfsonmicro.com> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
This commit is contained in:
parent
a3ee78ec6a
commit
975acebbbc
|
@ -137,13 +137,10 @@ static int arizona_gpio_probe(struct platform_device *pdev)
|
||||||
if (ret < 0) {
|
if (ret < 0) {
|
||||||
dev_err(&pdev->dev, "Could not register gpiochip, %d\n",
|
dev_err(&pdev->dev, "Could not register gpiochip, %d\n",
|
||||||
ret);
|
ret);
|
||||||
goto err;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
return ret;
|
return 0;
|
||||||
|
|
||||||
err:
|
|
||||||
return ret;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static struct platform_driver arizona_gpio_driver = {
|
static struct platform_driver arizona_gpio_driver = {
|
||||||
|
|
Loading…
Reference in New Issue