mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-13 14:24:11 +08:00
pinctrl: ingenic: 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
b6d83d010d
commit
22c7203db3
@ -3560,12 +3560,6 @@ static int ingenic_gpio_get(struct gpio_chip *gc, unsigned int offset)
|
||||
return (int) ingenic_gpio_get_value(jzgc, offset);
|
||||
}
|
||||
|
||||
static int ingenic_gpio_direction_input(struct gpio_chip *gc,
|
||||
unsigned int offset)
|
||||
{
|
||||
return pinctrl_gpio_direction_input(gc, offset);
|
||||
}
|
||||
|
||||
static int ingenic_gpio_direction_output(struct gpio_chip *gc,
|
||||
unsigned int offset, int value)
|
||||
{
|
||||
@ -3680,7 +3674,7 @@ static int ingenic_gpio_irq_request(struct irq_data *data)
|
||||
irq_hw_number_t irq = irqd_to_hwirq(data);
|
||||
int ret;
|
||||
|
||||
ret = ingenic_gpio_direction_input(gpio_chip, irq);
|
||||
ret = pinctrl_gpio_direction_input(gpio_chip, irq);
|
||||
if (ret)
|
||||
return ret;
|
||||
|
||||
@ -4197,7 +4191,7 @@ static int __init ingenic_gpio_probe(struct ingenic_pinctrl *jzpc,
|
||||
|
||||
jzgc->gc.set = ingenic_gpio_set;
|
||||
jzgc->gc.get = ingenic_gpio_get;
|
||||
jzgc->gc.direction_input = ingenic_gpio_direction_input;
|
||||
jzgc->gc.direction_input = pinctrl_gpio_direction_input;
|
||||
jzgc->gc.direction_output = ingenic_gpio_direction_output;
|
||||
jzgc->gc.get_direction = ingenic_gpio_get_direction;
|
||||
jzgc->gc.request = gpiochip_generic_request;
|
||||
|
Loading…
Reference in New Issue
Block a user