aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpio
diff options
context:
space:
mode:
authorLaxman Dewangan <ldewangan@nvidia.com>2016-03-11 08:43:22 -0500
committerLinus Walleij <linus.walleij@linaro.org>2016-04-13 08:42:02 -0400
commitdfbd379ba9b7431eec46f1dbc2603491be98619a (patch)
treef505ee437fb3dacf90c89ee399b727e25cdd266d /drivers/gpio
parentcd97a449a7cedf7d9a61882a672d317429b5d599 (diff)
gpio: of: Return error if gpio hog configuration failed
If GPIO hog configuration failed while adding OF based gpiochip() then return the error instead of ignoring it. This helps of properly handling the gpio driver dependency. When adding the gpio hog nodes for NVIDIA's Tegra210 platforms, the gpio_hogd() fails with EPROBE_DEFER because pinctrl is not ready at this time and gpio_request() for Tegra GPIO driver returns error. The error was not causing the Tegra GPIO driver to fail as the error was getting ignored. Signed-off-by: Laxman Dewangan <ldewangan@nvidia.com> Cc: Benoit Parrot <bparrot@ti.com> Cc: Alexandre Courbot <acourbot@nvidia.com> Reviewed-by: Thierry Reding <treding@nvidia.com> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'drivers/gpio')
-rw-r--r--drivers/gpio/gpiolib-of.c15
1 files changed, 9 insertions, 6 deletions
diff --git a/drivers/gpio/gpiolib-of.c b/drivers/gpio/gpiolib-of.c
index 42a4bb7cf49a..a2485093d10d 100644
--- a/drivers/gpio/gpiolib-of.c
+++ b/drivers/gpio/gpiolib-of.c
@@ -201,14 +201,16 @@ static struct gpio_desc *of_parse_own_gpio(struct device_node *np,
201 * 201 *
202 * This is only used by of_gpiochip_add to request/set GPIO initial 202 * This is only used by of_gpiochip_add to request/set GPIO initial
203 * configuration. 203 * configuration.
204 * It retures error if it fails otherwise 0 on success.
204 */ 205 */
205static void of_gpiochip_scan_gpios(struct gpio_chip *chip) 206static int of_gpiochip_scan_gpios(struct gpio_chip *chip)
206{ 207{
207 struct gpio_desc *desc = NULL; 208 struct gpio_desc *desc = NULL;
208 struct device_node *np; 209 struct device_node *np;
209 const char *name; 210 const char *name;
210 enum gpio_lookup_flags lflags; 211 enum gpio_lookup_flags lflags;
211 enum gpiod_flags dflags; 212 enum gpiod_flags dflags;
213 int ret;
212 214
213 for_each_child_of_node(chip->of_node, np) { 215 for_each_child_of_node(chip->of_node, np) {
214 if (!of_property_read_bool(np, "gpio-hog")) 216 if (!of_property_read_bool(np, "gpio-hog"))
@@ -218,9 +220,12 @@ static void of_gpiochip_scan_gpios(struct gpio_chip *chip)
218 if (IS_ERR(desc)) 220 if (IS_ERR(desc))
219 continue; 221 continue;
220 222
221 if (gpiod_hog(desc, name, lflags, dflags)) 223 ret = gpiod_hog(desc, name, lflags, dflags);
222 continue; 224 if (ret < 0)
225 return ret;
223 } 226 }
227
228 return 0;
224} 229}
225 230
226/** 231/**
@@ -442,9 +447,7 @@ int of_gpiochip_add(struct gpio_chip *chip)
442 447
443 of_node_get(chip->of_node); 448 of_node_get(chip->of_node);
444 449
445 of_gpiochip_scan_gpios(chip); 450 return of_gpiochip_scan_gpios(chip);
446
447 return 0;
448} 451}
449 452
450void of_gpiochip_remove(struct gpio_chip *chip) 453void of_gpiochip_remove(struct gpio_chip *chip)