diff options
| author | Hans Holmberg <hans.holmberg@intel.com> | 2015-01-09 03:40:43 -0500 |
|---|---|---|
| committer | Linus Walleij <linus.walleij@linaro.org> | 2015-01-15 12:31:47 -0500 |
| commit | 7b8792bbdffdff3abda704f89c6a45ea97afdc62 (patch) | |
| tree | d85da0c9c8d3f220fea09473eb7568e61c11ffd5 | |
| parent | ebbeba120ab2ec6ac5f3afc1425ec6ff0b77ad6f (diff) | |
gpiolib: of: Correct error handling in of_get_named_gpiod_flags
of_get_named_gpiod_flags fails with -EPROBE_DEFER in cases
where the gpio chip is available and the GPIO translation fails.
This causes drivers to be re-probed erroneusly, and hides the
real problem(i.e. the GPIO number being out of range).
Cc: Stable <stable@vger.kernel.org>
Signed-off-by: Hans Holmberg <hans.holmberg@intel.com>
Reviewed-by: Alexandre Courbot <acourbot@nvidia.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
| -rw-r--r-- | drivers/gpio/gpiolib-of.c | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/drivers/gpio/gpiolib-of.c b/drivers/gpio/gpiolib-of.c index 604dbe60bdee..08261f2b3a82 100644 --- a/drivers/gpio/gpiolib-of.c +++ b/drivers/gpio/gpiolib-of.c | |||
| @@ -45,8 +45,14 @@ static int of_gpiochip_find_and_xlate(struct gpio_chip *gc, void *data) | |||
| 45 | return false; | 45 | return false; |
| 46 | 46 | ||
| 47 | ret = gc->of_xlate(gc, &gg_data->gpiospec, gg_data->flags); | 47 | ret = gc->of_xlate(gc, &gg_data->gpiospec, gg_data->flags); |
| 48 | if (ret < 0) | 48 | if (ret < 0) { |
| 49 | return false; | 49 | /* We've found the gpio chip, but the translation failed. |
| 50 | * Return true to stop looking and return the translation | ||
| 51 | * error via out_gpio | ||
| 52 | */ | ||
| 53 | gg_data->out_gpio = ERR_PTR(ret); | ||
| 54 | return true; | ||
| 55 | } | ||
| 50 | 56 | ||
| 51 | gg_data->out_gpio = gpiochip_get_desc(gc, ret); | 57 | gg_data->out_gpio = gpiochip_get_desc(gc, ret); |
| 52 | return true; | 58 | return true; |
