Commit 895bf1d8 authored by Bartosz Golaszewski's avatar Bartosz Golaszewski
Browse files

pinctrl: starfive: jh7110: drop wrappers around pinctrl_gpio_request/free()



pinctrl_gpio_*() helpers now have signatures corresponding with those of
the GPIOLIB callbacks. We can drop the wrappers.

Signed-off-by: default avatarBartosz Golaszewski <bartosz.golaszewski@linaro.org>
Acked-by: default avatarLinus Walleij <linus.walleij@linaro.org>
parent 0b261df4
Loading
Loading
Loading
Loading
+2 −12
Original line number Diff line number Diff line
@@ -545,16 +545,6 @@ static const struct pinconf_ops jh7110_pinconf_ops = {
	.is_generic		= true,
};

static int jh7110_gpio_request(struct gpio_chip *gc, unsigned int gpio)
{
	return pinctrl_gpio_request(gc, gpio);
}

static void jh7110_gpio_free(struct gpio_chip *gc, unsigned int gpio)
{
	pinctrl_gpio_free(gc, gpio);
}

static int jh7110_gpio_get_direction(struct gpio_chip *gc,
				     unsigned int gpio)
{
@@ -940,8 +930,8 @@ int jh7110_pinctrl_probe(struct platform_device *pdev)

	sfp->gc.label = dev_name(dev);
	sfp->gc.owner = THIS_MODULE;
	sfp->gc.request = jh7110_gpio_request;
	sfp->gc.free = jh7110_gpio_free;
	sfp->gc.request = pinctrl_gpio_request;
	sfp->gc.free = pinctrl_gpio_free;
	sfp->gc.get_direction = jh7110_gpio_get_direction;
	sfp->gc.direction_input = jh7110_gpio_direction_input;
	sfp->gc.direction_output = jh7110_gpio_direction_output;