diff options
| author | Bartosz Golaszewski <[email protected]> | 2023-10-03 09:59:51 +0000 |
|---|---|---|
| committer | Bartosz Golaszewski <[email protected]> | 2023-11-04 09:23:22 +0000 |
| commit | b679d6c06b2b29187374f9f4da7eea1961c2eeaa (patch) | |
| tree | 7b027ccba64b595887e8ca8414af360847e707ea /drivers/gpio/gpio-pxa.c | |
| parent | treewide: rename pinctrl_gpio_direction_input_new() (diff) | |
| download | kernel-b679d6c06b2b29187374f9f4da7eea1961c2eeaa.tar.gz kernel-b679d6c06b2b29187374f9f4da7eea1961c2eeaa.zip | |
treewide: rename pinctrl_gpio_direction_output_new()
Now that pinctrl_gpio_direction_output() is no longer used, let's drop
the '_new' suffix from its improved variant.
Signed-off-by: Bartosz Golaszewski <[email protected]>
Acked-by: Linus Walleij <[email protected]>
Diffstat (limited to 'drivers/gpio/gpio-pxa.c')
| -rw-r--r-- | drivers/gpio/gpio-pxa.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpio/gpio-pxa.c b/drivers/gpio/gpio-pxa.c index c60197d5fde0..91cea97255fa 100644 --- a/drivers/gpio/gpio-pxa.c +++ b/drivers/gpio/gpio-pxa.c @@ -289,7 +289,7 @@ static int pxa_gpio_direction_output(struct gpio_chip *chip, writel_relaxed(mask, base + (value ? GPSR_OFFSET : GPCR_OFFSET)); if (pxa_gpio_has_pinctrl()) { - ret = pinctrl_gpio_direction_output_new(chip, offset); + ret = pinctrl_gpio_direction_output(chip, offset); if (ret) return ret; } |
