diff options
author | Geert Uytterhoeven <geert+renesas@glider.be> | 2019-03-28 09:13:47 -0400 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2019-03-28 12:58:34 -0400 |
commit | f7299d441a4da8a5088e651ea55023525a793a13 (patch) | |
tree | 707a89a002434ede152561da9bb2a3344afce331 | |
parent | 7ce40277bf848391705011ba37eac2e377cbd9e6 (diff) |
gpio: of: Fix of_gpiochip_add() error path
If the call to of_gpiochip_scan_gpios() in of_gpiochip_add() fails, no
error handling is performed. This lead to the need of callers to call
of_gpiochip_remove() on failure, which causes "BAD of_node_put() on ..."
if the failure happened before the call to of_node_get().
Fix this by adding proper error handling.
Note that calling gpiochip_remove_pin_ranges() multiple times causes no
harm: subsequent calls are a no-op.
Fixes: dfbd379ba9b7431e ("gpio: of: Return error if gpio hog configuration failed")
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Reviewed-by: Mukesh Ojha <mojha@codeaurora.org>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
-rw-r--r-- | drivers/gpio/gpiolib-of.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/drivers/gpio/gpiolib-of.c b/drivers/gpio/gpiolib-of.c index 0220dd6d64ed..6a3ec575a404 100644 --- a/drivers/gpio/gpiolib-of.c +++ b/drivers/gpio/gpiolib-of.c | |||
@@ -718,7 +718,13 @@ int of_gpiochip_add(struct gpio_chip *chip) | |||
718 | 718 | ||
719 | of_node_get(chip->of_node); | 719 | of_node_get(chip->of_node); |
720 | 720 | ||
721 | return of_gpiochip_scan_gpios(chip); | 721 | status = of_gpiochip_scan_gpios(chip); |
722 | if (status) { | ||
723 | of_node_put(chip->of_node); | ||
724 | gpiochip_remove_pin_ranges(chip); | ||
725 | } | ||
726 | |||
727 | return status; | ||
722 | } | 728 | } |
723 | 729 | ||
724 | void of_gpiochip_remove(struct gpio_chip *chip) | 730 | void of_gpiochip_remove(struct gpio_chip *chip) |