pinctrl: cy8c95x0: Don't use cy8c95x0_set_mode() twice
authorAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Tue, 18 Oct 2022 15:12:23 +0000 (18:12 +0300)
committerLinus Walleij <linus.walleij@linaro.org>
Fri, 21 Oct 2022 08:29:23 +0000 (10:29 +0200)
Instead, call it once in cy8c95x0_pinmux_mode() and if selector is 0,
shortcut the flow by returning 0 immediately.

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Link: https://lore.kernel.org/r/20221018151223.80846-1-andriy.shevchenko@linux.intel.com
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
drivers/pinctrl/pinctrl-cy8c95x0.c

index b44b36b..ee753e0 100644 (file)
@@ -1107,13 +1107,13 @@ static int cy8c95x0_pinmux_mode(struct cy8c95x0_pinctrl *chip,
        u8 bit = cypress_get_pin_mask(chip, group);
        int ret;
 
-       if (selector == 0)
-               return cy8c95x0_set_mode(chip, group, false);
-
-       ret = cy8c95x0_set_mode(chip, group, true);
+       ret = cy8c95x0_set_mode(chip, group, selector);
        if (ret < 0)
                return ret;
 
+       if (selector == 0)
+               return 0;
+
        /* Set direction to output & set output to 1 so that PWM can work */
        ret = regmap_write_bits(chip->regmap, CY8C95X0_DIRECTION, bit, bit);
        if (ret < 0)