mirror of
https://github.com/torvalds/linux.git
synced 2024-11-26 06:02:05 +00:00
pinctrl: as3722: drop the wrapper around pinctrl_gpio_direction_input()
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>
This commit is contained in:
parent
22c7203db3
commit
54d9eab19e
@ -500,11 +500,6 @@ static void as3722_gpio_set(struct gpio_chip *chip, unsigned offset,
|
|||||||
"GPIO_SIGNAL_OUT_REG update failed: %d\n", ret);
|
"GPIO_SIGNAL_OUT_REG update failed: %d\n", ret);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int as3722_gpio_direction_input(struct gpio_chip *chip, unsigned offset)
|
|
||||||
{
|
|
||||||
return pinctrl_gpio_direction_input(chip, offset);
|
|
||||||
}
|
|
||||||
|
|
||||||
static int as3722_gpio_direction_output(struct gpio_chip *chip,
|
static int as3722_gpio_direction_output(struct gpio_chip *chip,
|
||||||
unsigned offset, int value)
|
unsigned offset, int value)
|
||||||
{
|
{
|
||||||
@ -526,7 +521,7 @@ static const struct gpio_chip as3722_gpio_chip = {
|
|||||||
.free = gpiochip_generic_free,
|
.free = gpiochip_generic_free,
|
||||||
.get = as3722_gpio_get,
|
.get = as3722_gpio_get,
|
||||||
.set = as3722_gpio_set,
|
.set = as3722_gpio_set,
|
||||||
.direction_input = as3722_gpio_direction_input,
|
.direction_input = pinctrl_gpio_direction_input,
|
||||||
.direction_output = as3722_gpio_direction_output,
|
.direction_output = as3722_gpio_direction_output,
|
||||||
.to_irq = as3722_gpio_to_irq,
|
.to_irq = as3722_gpio_to_irq,
|
||||||
.can_sleep = true,
|
.can_sleep = true,
|
||||||
|
Loading…
Reference in New Issue
Block a user