mirror of
https://github.com/raspberrypi/linux.git
synced 2026-01-05 10:47:34 +00:00
pinctrl: starfive: jh7100: 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: Bartosz Golaszewski <bartosz.golaszewski@linaro.org> Acked-by: Linus Walleij <linus.walleij@linaro.org>
This commit is contained in:
@@ -916,16 +916,6 @@ static struct pinctrl_desc starfive_desc = {
|
||||
.custom_conf_items = starfive_pinconf_custom_conf_items,
|
||||
};
|
||||
|
||||
static int starfive_gpio_request(struct gpio_chip *gc, unsigned int gpio)
|
||||
{
|
||||
return pinctrl_gpio_request(gc, gpio);
|
||||
}
|
||||
|
||||
static void starfive_gpio_free(struct gpio_chip *gc, unsigned int gpio)
|
||||
{
|
||||
pinctrl_gpio_free(gc, gpio);
|
||||
}
|
||||
|
||||
static int starfive_gpio_get_direction(struct gpio_chip *gc, unsigned int gpio)
|
||||
{
|
||||
struct starfive_pinctrl *sfp = container_of(gc, struct starfive_pinctrl, gc);
|
||||
@@ -1309,8 +1299,8 @@ static int starfive_probe(struct platform_device *pdev)
|
||||
|
||||
sfp->gc.label = dev_name(dev);
|
||||
sfp->gc.owner = THIS_MODULE;
|
||||
sfp->gc.request = starfive_gpio_request;
|
||||
sfp->gc.free = starfive_gpio_free;
|
||||
sfp->gc.request = pinctrl_gpio_request;
|
||||
sfp->gc.free = pinctrl_gpio_free;
|
||||
sfp->gc.get_direction = starfive_gpio_get_direction;
|
||||
sfp->gc.direction_input = starfive_gpio_direction_input;
|
||||
sfp->gc.direction_output = starfive_gpio_direction_output;
|
||||
|
||||
Reference in New Issue
Block a user