diff options
author | Stephen Warren <swarren@nvidia.com> | 2012-01-06 15:38:31 -0500 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2012-01-20 11:55:49 -0500 |
commit | 546edd83abe4f03472d721c60011c5ff95e25474 (patch) | |
tree | 609fc1988af9b7a3ab16fb82cd985cfe0b7b31d1 /drivers | |
parent | dcd6c92267155e70a94b3927bce681ce74b80d1f (diff) |
pinctrl: fix pinconf_pins_show iteration
Commit 706e852 "pinctrl: correct a offset while enumerating pins"
modified the variable used by pinconf_pin_show()'s for loop, but didn't
update the for loop test expression.
Signed-off-by: Stephen Warren <swarren@nvidia.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/pinctrl/pinconf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pinctrl/pinconf.c b/drivers/pinctrl/pinconf.c index 1259872b0a1d..1892a3794b99 100644 --- a/drivers/pinctrl/pinconf.c +++ b/drivers/pinctrl/pinconf.c | |||
@@ -236,7 +236,7 @@ static int pinconf_pins_show(struct seq_file *s, void *what) | |||
236 | seq_puts(s, "Format: pin (name): pinmux setting array\n"); | 236 | seq_puts(s, "Format: pin (name): pinmux setting array\n"); |
237 | 237 | ||
238 | /* The pin number can be retrived from the pin controller descriptor */ | 238 | /* The pin number can be retrived from the pin controller descriptor */ |
239 | for (i = 0; pin < pctldev->desc->npins; i++) { | 239 | for (i = 0; i < pctldev->desc->npins; i++) { |
240 | struct pin_desc *desc; | 240 | struct pin_desc *desc; |
241 | 241 | ||
242 | pin = pctldev->desc->pins[i].number; | 242 | pin = pctldev->desc->pins[i].number; |