Commit d9fe0039 authored by Stephen Warren's avatar Stephen Warren Committed by Grant Likely

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: default avatarStephen Warren <swarren@nvidia.com>
Acked-by: default avatarMark Rutland <mark.rutland@arm.com>
Acked-by: default avatarLinus Walleij <linus.walleij@linaro.org>
Signed-off-by: default avatarGrant Likely <grant.likely@linaro.org>
parent 91d9942c
...@@ -194,8 +194,8 @@ static void of_gpiochip_add_pin_range(struct gpio_chip *chip) ...@@ -194,8 +194,8 @@ static void of_gpiochip_add_pin_range(struct gpio_chip *chip)
return; return;
for (;; index++) { for (;; index++) {
ret = of_parse_phandle_with_args(np, "gpio-ranges", ret = of_parse_phandle_with_fixed_args(np, "gpio-ranges", 3,
"#gpio-range-cells", index, &pinspec); index, &pinspec);
if (ret) if (ret)
break; break;
......
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