mirror of
https://github.com/rd-stuffs/msm-4.14.git
synced 2025-02-20 11:45:48 +08:00
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>
This commit is contained in:
parent
ebbeba120a
commit
7b8792bbdf
@ -45,8 +45,14 @@ static int of_gpiochip_find_and_xlate(struct gpio_chip *gc, void *data)
|
|||||||
return false;
|
return false;
|
||||||
|
|
||||||
ret = gc->of_xlate(gc, &gg_data->gpiospec, gg_data->flags);
|
ret = gc->of_xlate(gc, &gg_data->gpiospec, gg_data->flags);
|
||||||
if (ret < 0)
|
if (ret < 0) {
|
||||||
return false;
|
/* We've found the gpio chip, but the translation failed.
|
||||||
|
* Return true to stop looking and return the translation
|
||||||
|
* error via out_gpio
|
||||||
|
*/
|
||||||
|
gg_data->out_gpio = ERR_PTR(ret);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
gg_data->out_gpio = gpiochip_get_desc(gc, ret);
|
gg_data->out_gpio = gpiochip_get_desc(gc, ret);
|
||||||
return true;
|
return true;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user