diff options
author | John Crispin <blogic@openwrt.org> | 2013-02-01 07:05:05 -0500 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2013-02-05 10:17:26 -0500 |
commit | d8a7c1f134edda4ac17a99fffc1159a65a3866a7 (patch) | |
tree | 9bf18110c512a5b66d07c288436193054853b81a /drivers/pinctrl | |
parent | c58bdc36bc111cf3d8f1a27b68899ea3caf2e12b (diff) |
pinctrl/lantiq: fix pin number in ltq_pmx_gpio_request_enable
The mapping logic inside ltq_pmx_gpio_request_enable() was
broken. This only effected Falcon SoC.
Signed-off-by: Thomas Langer <thomas.langer@lantiq.com>
Signed-off-by: John Crispin <blogic@openwrt.org>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'drivers/pinctrl')
-rw-r--r-- | drivers/pinctrl/pinctrl-lantiq.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pinctrl/pinctrl-lantiq.c b/drivers/pinctrl/pinctrl-lantiq.c index 7d110722dfd1..a70384611351 100644 --- a/drivers/pinctrl/pinctrl-lantiq.c +++ b/drivers/pinctrl/pinctrl-lantiq.c | |||
@@ -294,7 +294,7 @@ static int ltq_pmx_gpio_request_enable(struct pinctrl_dev *pctrldev, | |||
294 | unsigned pin) | 294 | unsigned pin) |
295 | { | 295 | { |
296 | struct ltq_pinmux_info *info = pinctrl_dev_get_drvdata(pctrldev); | 296 | struct ltq_pinmux_info *info = pinctrl_dev_get_drvdata(pctrldev); |
297 | int mfp = match_mfp(info, pin + (range->id * 32)); | 297 | int mfp = match_mfp(info, pin); |
298 | int pin_func; | 298 | int pin_func; |
299 | 299 | ||
300 | if (mfp < 0) { | 300 | if (mfp < 0) { |