mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-04 02:20:25 +00:00
Merge branch 'next_gpio' of https://source.denx.de/u-boot/custodians/u-boot-sh into next
- gpio: renesas: Simplify .request/.rfree callbacks
This commit is contained in:
commit
f0e201433a
1 changed files with 2 additions and 13 deletions
|
@ -130,20 +130,9 @@ static int rcar_gpio_get_function(struct udevice *dev, unsigned offset)
|
|||
return GPIOF_INPUT;
|
||||
}
|
||||
|
||||
static int rcar_gpio_request(struct udevice *dev, unsigned offset,
|
||||
const char *label)
|
||||
{
|
||||
return pinctrl_gpio_request(dev, offset, label);
|
||||
}
|
||||
|
||||
static int rcar_gpio_free(struct udevice *dev, unsigned offset)
|
||||
{
|
||||
return pinctrl_gpio_free(dev, offset);
|
||||
}
|
||||
|
||||
static const struct dm_gpio_ops rcar_gpio_ops = {
|
||||
.request = rcar_gpio_request,
|
||||
.rfree = rcar_gpio_free,
|
||||
.request = pinctrl_gpio_request,
|
||||
.rfree = pinctrl_gpio_free,
|
||||
.direction_input = rcar_gpio_direction_input,
|
||||
.direction_output = rcar_gpio_direction_output,
|
||||
.get_value = rcar_gpio_get_value,
|
||||
|
|
Loading…
Reference in a new issue