diff options
author | Stephen Warren <swarren@nvidia.com> | 2013-08-14 17:27:12 -0400 |
---|---|---|
committer | Grant Likely <grant.likely@linaro.org> | 2013-08-29 16:40:24 -0400 |
commit | d9fe0039c4247383c2783923a3860227813b4d82 (patch) | |
tree | 5185258f4697e1acd4e180530eb8232ca8576bea /drivers/gpio | |
parent | 91d9942c28ee691dab47185f38b052f84db4e0f7 (diff) |
gpio: implement gpio-ranges binding document fix
Use the new of_parse_phandle_with_fixed_args() to implement the
corrected gpio-ranges DT property definition.
Signed-off-by: Stephen Warren <swarren@nvidia.com>
Acked-by: Mark Rutland <mark.rutland@arm.com>
Acked-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Grant Likely <grant.likely@linaro.org>
Diffstat (limited to 'drivers/gpio')
-rw-r--r-- | drivers/gpio/gpiolib-of.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpio/gpiolib-of.c b/drivers/gpio/gpiolib-of.c index 665f9530c950..48cda3c9ee94 100644 --- a/drivers/gpio/gpiolib-of.c +++ b/drivers/gpio/gpiolib-of.c | |||
@@ -194,8 +194,8 @@ static void of_gpiochip_add_pin_range(struct gpio_chip *chip) | |||
194 | return; | 194 | return; |
195 | 195 | ||
196 | for (;; index++) { | 196 | for (;; index++) { |
197 | ret = of_parse_phandle_with_args(np, "gpio-ranges", | 197 | ret = of_parse_phandle_with_fixed_args(np, "gpio-ranges", 3, |
198 | "#gpio-range-cells", index, &pinspec); | 198 | index, &pinspec); |
199 | if (ret) | 199 | if (ret) |
200 | break; | 200 | break; |
201 | 201 | ||