mirror of
https://github.com/torvalds/linux.git
synced 2026-06-05 04:56:13 +02:00
pinctrl: renesas: use new pinctrl GPIO helpers
Replace the pinctrl helpers taking the global GPIO number as argument with the improved variants that instead take a pointer to the GPIO chip and the controller-relative offset. Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org> Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be> Acked-by: Geert Uytterhoeven <geert+renesas@glider.be> Acked-by: Linus Walleij <linus.walleij@linaro.org>
This commit is contained in:
parent
481a59fb3d
commit
af80a91199
|
|
@ -135,12 +135,12 @@ static int gpio_pin_request(struct gpio_chip *gc, unsigned offset)
|
|||
if (idx < 0 || pfc->info->pins[idx].enum_id == 0)
|
||||
return -EINVAL;
|
||||
|
||||
return pinctrl_gpio_request(gc->base + offset);
|
||||
return pinctrl_gpio_request_new(gc, offset);
|
||||
}
|
||||
|
||||
static void gpio_pin_free(struct gpio_chip *gc, unsigned offset)
|
||||
{
|
||||
return pinctrl_gpio_free(gc->base + offset);
|
||||
return pinctrl_gpio_free_new(gc, offset);
|
||||
}
|
||||
|
||||
static void gpio_pin_set_value(struct sh_pfc_chip *chip, unsigned offset,
|
||||
|
|
@ -164,7 +164,7 @@ static void gpio_pin_set_value(struct sh_pfc_chip *chip, unsigned offset,
|
|||
|
||||
static int gpio_pin_direction_input(struct gpio_chip *gc, unsigned offset)
|
||||
{
|
||||
return pinctrl_gpio_direction_input(gc->base + offset);
|
||||
return pinctrl_gpio_direction_input_new(gc, offset);
|
||||
}
|
||||
|
||||
static int gpio_pin_direction_output(struct gpio_chip *gc, unsigned offset,
|
||||
|
|
@ -172,7 +172,7 @@ static int gpio_pin_direction_output(struct gpio_chip *gc, unsigned offset,
|
|||
{
|
||||
gpio_pin_set_value(gpiochip_get_data(gc), offset, value);
|
||||
|
||||
return pinctrl_gpio_direction_output(gc->base + offset);
|
||||
return pinctrl_gpio_direction_output_new(gc, offset);
|
||||
}
|
||||
|
||||
static int gpio_pin_get(struct gpio_chip *gc, unsigned offset)
|
||||
|
|
|
|||
|
|
@ -1056,7 +1056,7 @@ static int rzg2l_gpio_request(struct gpio_chip *chip, unsigned int offset)
|
|||
if (ret)
|
||||
return ret;
|
||||
|
||||
ret = pinctrl_gpio_request(chip->base + offset);
|
||||
ret = pinctrl_gpio_request_new(chip, offset);
|
||||
if (ret)
|
||||
return ret;
|
||||
|
||||
|
|
@ -1181,7 +1181,7 @@ static void rzg2l_gpio_free(struct gpio_chip *chip, unsigned int offset)
|
|||
{
|
||||
unsigned int virq;
|
||||
|
||||
pinctrl_gpio_free(chip->base + offset);
|
||||
pinctrl_gpio_free_new(chip, offset);
|
||||
|
||||
virq = irq_find_mapping(chip->irq.domain, offset);
|
||||
if (virq)
|
||||
|
|
|
|||
|
|
@ -754,7 +754,7 @@ static int rzv2m_gpio_request(struct gpio_chip *chip, unsigned int offset)
|
|||
u8 bit = RZV2M_PIN_ID_TO_PIN(offset);
|
||||
int ret;
|
||||
|
||||
ret = pinctrl_gpio_request(chip->base + offset);
|
||||
ret = pinctrl_gpio_request_new(chip, offset);
|
||||
if (ret)
|
||||
return ret;
|
||||
|
||||
|
|
@ -832,7 +832,7 @@ static int rzv2m_gpio_get(struct gpio_chip *chip, unsigned int offset)
|
|||
|
||||
static void rzv2m_gpio_free(struct gpio_chip *chip, unsigned int offset)
|
||||
{
|
||||
pinctrl_gpio_free(chip->base + offset);
|
||||
pinctrl_gpio_free_new(chip, offset);
|
||||
|
||||
/*
|
||||
* Set the GPIO as an input to ensure that the next GPIO request won't
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user