aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpio
diff options
context:
space:
mode:
authorSimon Horman <horms+renesas@verge.net.au>2013-03-15 07:16:28 +0100
committerSimon Horman <horms+renesas@verge.net.au>2013-03-15 07:16:28 +0100
commit47f4e0c1c87f34bf1fc74b8935a37d229a147946 (patch)
tree29c7fe96a5dbc8870e75ecbb027e39682a5fcbab /drivers/gpio
parentMerge branch 'devel' of git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl into pinmux (diff)
parentpinctrl: generic: Fix compilation error (diff)
downloadlinux-dev-47f4e0c1c87f34bf1fc74b8935a37d229a147946.tar.xz
linux-dev-47f4e0c1c87f34bf1fc74b8935a37d229a147946.zip
Merge branch 'fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl into pinmux-base
Diffstat (limited to 'drivers/gpio')
-rw-r--r--drivers/gpio/gpiolib-of.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/gpio/gpiolib-of.c b/drivers/gpio/gpiolib-of.c
index 892040ad0095..465f4ca57e80 100644
--- a/drivers/gpio/gpiolib-of.c
+++ b/drivers/gpio/gpiolib-of.c
@@ -193,7 +193,7 @@ static void of_gpiochip_add_pin_range(struct gpio_chip *chip)
if (!np)
return;
- do {
+ for (;; index++) {
ret = of_parse_phandle_with_args(np, "gpio-ranges",
"#gpio-range-cells", index, &pinspec);
if (ret)
@@ -211,8 +211,7 @@ static void of_gpiochip_add_pin_range(struct gpio_chip *chip)
if (ret)
break;
-
- } while (index++);
+ }
}
#else