summaryrefslogtreecommitdiff
path: root/drivers/pinctrl/cirrus/pinctrl-lochnagar.c
diff options
context:
space:
mode:
authorBartosz Golaszewski <bartosz.golaszewski@linaro.org>2023-10-03 11:12:12 +0300
committerBartosz Golaszewski <bartosz.golaszewski@linaro.org>2023-11-04 12:23:20 +0300
commit3607ac37a4f378cd5f673d6bdb3776e45a899e2c (patch)
tree4ab2373b6582552f85334e5ca7c250fc9d7fea26 /drivers/pinctrl/cirrus/pinctrl-lochnagar.c
parent91dff6b66e5e6a72136b5a0b276bc32d40ae2796 (diff)
downloadlinux-3607ac37a4f378cd5f673d6bdb3776e45a899e2c.tar.xz
pinctrl: cirrus: use new pinctrl GPIO helpers
Replace the pinctrl helpers taking the global GPIO number as argument with the improved variants that instead take a pointer to the GPIO chip and the controller-relative offset. Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org> Acked-by: Charles Keepax <ckeepax@opensource.cirrus.com> Acked-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'drivers/pinctrl/cirrus/pinctrl-lochnagar.c')
-rw-r--r--drivers/pinctrl/cirrus/pinctrl-lochnagar.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pinctrl/cirrus/pinctrl-lochnagar.c b/drivers/pinctrl/cirrus/pinctrl-lochnagar.c
index 0b78cf611afe..f3c8a8c14e14 100644
--- a/drivers/pinctrl/cirrus/pinctrl-lochnagar.c
+++ b/drivers/pinctrl/cirrus/pinctrl-lochnagar.c
@@ -1098,7 +1098,7 @@ static int lochnagar_gpio_direction_out(struct gpio_chip *chip,
{
lochnagar_gpio_set(chip, offset, value);
- return pinctrl_gpio_direction_output(chip->base + offset);
+ return pinctrl_gpio_direction_output_new(chip, offset);
}
static int lochnagar_fill_func_groups(struct lochnagar_pin_priv *priv)