pinctrl: stm32: use valid pin identifier in stm32_pinctrl_resume()
authorFabien Dessenne <fabien.dessenne@foss.st.com>
Fri, 8 Oct 2021 12:25:17 +0000 (14:25 +0200)
committerLinus Walleij <linus.walleij@linaro.org>
Wed, 13 Oct 2021 23:16:12 +0000 (01:16 +0200)
When resuming from low power, the driver attempts to restore the
configuration of some pins. This is done by a call to:
  stm32_pinctrl_restore_gpio_regs(struct stm32_pinctrl *pctl, u32 pin)
where 'pin' must be a valid pin value (i.e. matching some 'groups->pin').
Fix the current implementation which uses some wrong 'pin' value.

Fixes: e2f3cf18c3e2 ("pinctrl: stm32: add suspend/resume management")
Signed-off-by: Fabien Dessenne <fabien.dessenne@foss.st.com>
Link: https://lore.kernel.org/r/20211008122517.617633-1-fabien.dessenne@foss.st.com
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
drivers/pinctrl/stm32/pinctrl-stm32.c

index 68b3886..dfd8888 100644 (file)
@@ -1644,8 +1644,8 @@ int __maybe_unused stm32_pinctrl_resume(struct device *dev)
        struct stm32_pinctrl_group *g = pctl->groups;
        int i;
 
-       for (i = g->pin; i < g->pin + pctl->ngroups; i++)
-               stm32_pinctrl_restore_gpio_regs(pctl, i);
+       for (i = 0; i < pctl->ngroups; i++, g++)
+               stm32_pinctrl_restore_gpio_regs(pctl, g->pin);
 
        return 0;
 }