diff mbox series

gpio: omap: Fix error path on chip init

Message ID 20180102102314.12906-1-linus.walleij@linaro.org
State New
Headers show
Series gpio: omap: Fix error path on chip init | expand

Commit Message

Linus Walleij Jan. 2, 2018, 10:23 a.m. UTC
The error path was leaking a gpio_chip at one point.

Cc: Johan Hovold <johan@kernel.org>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
---
 drivers/gpio/gpio-omap.c | 13 +++++++++----
 1 file changed, 9 insertions(+), 4 deletions(-)

Comments

Johan Hovold Jan. 2, 2018, 10:39 a.m. UTC | #1
On Tue, Jan 02, 2018 at 11:23:14AM +0100, Linus Walleij wrote:
> The error path was leaking a gpio_chip at one point.
> 
> Cc: Johan Hovold <johan@kernel.org>
> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>

Reviewed-by: Johan Hovold <johan@kernel.org>
--
To unsubscribe from this list: send the line "unsubscribe linux-gpio" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Grygorii Strashko Jan. 12, 2018, 9:13 p.m. UTC | #2
On 01/02/2018 04:23 AM, Linus Walleij wrote:
> The error path was leaking a gpio_chip at one point.
> 
> Cc: Johan Hovold <johan@kernel.org>
> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>


Sry, but this seems not in sync with gpio-next [1]

https://patchwork.kernel.org/patch/10060049/


> ---
>   drivers/gpio/gpio-omap.c | 13 +++++++++----
>   1 file changed, 9 insertions(+), 4 deletions(-)
> 
> diff --git a/drivers/gpio/gpio-omap.c b/drivers/gpio/gpio-omap.c
> index e136d666f1e5..d83e8624964a 100644
> --- a/drivers/gpio/gpio-omap.c
> +++ b/drivers/gpio/gpio-omap.c
> @@ -1104,7 +1104,8 @@ static int omap_gpio_chip_init(struct gpio_bank *bank, struct irq_chip *irqc)
>   					-1, 0, bank->width, 0);
>   	if (irq_base < 0) {
>   		dev_err(bank->chip.parent, "Couldn't allocate IRQ numbers\n");
> -		return -ENODEV;
> +		ret = -ENODEV;
> +		goto err_remove_chip;
>   	}
>   #endif
>   
> @@ -1122,8 +1123,8 @@ static int omap_gpio_chip_init(struct gpio_bank *bank, struct irq_chip *irqc)
>   	if (ret) {
>   		dev_err(bank->chip.parent,
>   			"Couldn't add irqchip to gpiochip %d\n", ret);
> -		gpiochip_remove(&bank->chip);
> -		return -ENODEV;
> +		ret = -ENODEV;
> +		goto err_remove_chip;
>   	}
>   
>   	gpiochip_set_chained_irqchip(&bank->chip, irqc, bank->irq, NULL);
> @@ -1132,8 +1133,12 @@ static int omap_gpio_chip_init(struct gpio_bank *bank, struct irq_chip *irqc)
>   			       omap_gpio_irq_handler,
>   			       0, dev_name(bank->chip.parent), bank);
>   	if (ret)
> -		gpiochip_remove(&bank->chip);
> +		goto err_remove_chip;
>   
> +	return 0;
> +
> +err_remove_chip:
> +	gpiochip_remove(&bank->chip);
>   	return ret;
>   }
>   
>
Johan Hovold Jan. 18, 2018, 3:07 a.m. UTC | #3
On Fri, Jan 12, 2018 at 03:13:44PM -0600, Grygorii Strashko wrote:
> 
> 
> On 01/02/2018 04:23 AM, Linus Walleij wrote:
> > The error path was leaking a gpio_chip at one point.
> > 
> > Cc: Johan Hovold <johan@kernel.org>
> > Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
> 
> 
> Sry, but this seems not in sync with gpio-next [1]
> 
> https://patchwork.kernel.org/patch/10060049/

Indeed. That patch inadvertently fixed the broken error path.

Thanks,
Johan
--
To unsubscribe from this list: send the line "unsubscribe linux-gpio" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox series

Patch

diff --git a/drivers/gpio/gpio-omap.c b/drivers/gpio/gpio-omap.c
index e136d666f1e5..d83e8624964a 100644
--- a/drivers/gpio/gpio-omap.c
+++ b/drivers/gpio/gpio-omap.c
@@ -1104,7 +1104,8 @@  static int omap_gpio_chip_init(struct gpio_bank *bank, struct irq_chip *irqc)
 					-1, 0, bank->width, 0);
 	if (irq_base < 0) {
 		dev_err(bank->chip.parent, "Couldn't allocate IRQ numbers\n");
-		return -ENODEV;
+		ret = -ENODEV;
+		goto err_remove_chip;
 	}
 #endif
 
@@ -1122,8 +1123,8 @@  static int omap_gpio_chip_init(struct gpio_bank *bank, struct irq_chip *irqc)
 	if (ret) {
 		dev_err(bank->chip.parent,
 			"Couldn't add irqchip to gpiochip %d\n", ret);
-		gpiochip_remove(&bank->chip);
-		return -ENODEV;
+		ret = -ENODEV;
+		goto err_remove_chip;
 	}
 
 	gpiochip_set_chained_irqchip(&bank->chip, irqc, bank->irq, NULL);
@@ -1132,8 +1133,12 @@  static int omap_gpio_chip_init(struct gpio_bank *bank, struct irq_chip *irqc)
 			       omap_gpio_irq_handler,
 			       0, dev_name(bank->chip.parent), bank);
 	if (ret)
-		gpiochip_remove(&bank->chip);
+		goto err_remove_chip;
 
+	return 0;
+
+err_remove_chip:
+	gpiochip_remove(&bank->chip);
 	return ret;
 }