Commit 55635c52 authored by Hans Holmberg's avatar Hans Holmberg Committed by Sasha Levin

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: default avatarHans Holmberg <hans.holmberg@intel.com>
Reviewed-by: default avatarAlexandre Courbot <acourbot@nvidia.com>
Signed-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>

(cherry picked from commit 7b8792bb)
Signed-off-by: default avatarSasha Levin <sasha.levin@oracle.com>
parent 7106485c
......@@ -52,7 +52,7 @@ static int of_gpiochip_find_and_xlate(struct gpio_chip *gc, void *data)
return true;
}
gg_data->out_gpio = gpio_to_desc(ret + gc->base);
gg_data->out_gpio = ret + gc->base;
return true;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment