pinctrl: rk805: drop the wrapper around pinctrl_gpio_direction_input()
authorBartosz Golaszewski <bartosz.golaszewski@linaro.org>
Tue, 10 Oct 2023 10:00:06 +0000 (12:00 +0200)
committerBartosz Golaszewski <bartosz.golaszewski@linaro.org>
Sat, 4 Nov 2023 09:23:23 +0000 (10:23 +0100)
pinctrl_gpio_direction_input() now has the same signature as the
wrapper around it so we can drop them.

Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
Acked-by: Linus Walleij <linus.walleij@linaro.org>
drivers/pinctrl/pinctrl-rk805.c

index 968f066eb9dae2394faa888cc7c8011f1c259088..56d916f2cee6d715ede3cbca4c2ce3be5930f97e 100644 (file)
@@ -286,12 +286,6 @@ static void rk805_gpio_set(struct gpio_chip *chip,
                        offset, value);
 }
 
-static int rk805_gpio_direction_input(struct gpio_chip *chip,
-                                     unsigned int offset)
-{
-       return pinctrl_gpio_direction_input(chip, offset);
-}
-
 static int rk805_gpio_direction_output(struct gpio_chip *chip,
                                       unsigned int offset, int value)
 {
@@ -330,7 +324,7 @@ static const struct gpio_chip rk805_gpio_chip = {
        .get_direction          = rk805_gpio_get_direction,
        .get                    = rk805_gpio_get,
        .set                    = rk805_gpio_set,
-       .direction_input        = rk805_gpio_direction_input,
+       .direction_input        = pinctrl_gpio_direction_input,
        .direction_output       = rk805_gpio_direction_output,
        .can_sleep              = true,
        .base                   = -1,