treewide: rename pinctrl_gpio_free_new()
Now that pinctrl_gpio_free()() is no longer used, let's drop the '_new' suffix from its improved variant. Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org> Acked-by: Linus Walleij <linus.walleij@linaro.org>
This commit is contained in:
parent
acb38be654
commit
4fccb263f3
@ -755,7 +755,7 @@ static int aspeed_gpio_request(struct gpio_chip *chip, unsigned int offset)
|
||||
|
||||
static void aspeed_gpio_free(struct gpio_chip *chip, unsigned int offset)
|
||||
{
|
||||
pinctrl_gpio_free_new(chip, offset);
|
||||
pinctrl_gpio_free(chip, offset);
|
||||
}
|
||||
|
||||
static int usecs_to_cycles(struct aspeed_gpio *gpio, unsigned long usecs,
|
||||
|
@ -234,7 +234,7 @@ static int em_gio_request(struct gpio_chip *chip, unsigned offset)
|
||||
|
||||
static void em_gio_free(struct gpio_chip *chip, unsigned offset)
|
||||
{
|
||||
pinctrl_gpio_free_new(chip, offset);
|
||||
pinctrl_gpio_free(chip, offset);
|
||||
|
||||
/* Set the GPIO as an input to ensure that the next GPIO request won't
|
||||
* drive the GPIO pin as an output.
|
||||
|
@ -286,7 +286,7 @@ static void gpio_rcar_free(struct gpio_chip *chip, unsigned offset)
|
||||
{
|
||||
struct gpio_rcar_priv *p = gpiochip_get_data(chip);
|
||||
|
||||
pinctrl_gpio_free_new(chip, offset);
|
||||
pinctrl_gpio_free(chip, offset);
|
||||
|
||||
/*
|
||||
* Set the GPIO as an input to ensure that the next GPIO request won't
|
||||
|
@ -146,7 +146,7 @@ static void tegra_gpio_free(struct gpio_chip *chip, unsigned int offset)
|
||||
{
|
||||
struct tegra_gpio_info *tgi = gpiochip_get_data(chip);
|
||||
|
||||
pinctrl_gpio_free_new(chip, offset);
|
||||
pinctrl_gpio_free(chip, offset);
|
||||
tegra_gpio_disable(tgi, offset);
|
||||
}
|
||||
|
||||
|
@ -2030,7 +2030,7 @@ void gpiochip_generic_free(struct gpio_chip *gc, unsigned int offset)
|
||||
return;
|
||||
#endif
|
||||
|
||||
pinctrl_gpio_free_new(gc, offset);
|
||||
pinctrl_gpio_free(gc, offset);
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(gpiochip_generic_free);
|
||||
|
||||
|
@ -345,7 +345,7 @@ static void iproc_gpio_free(struct gpio_chip *gc, unsigned offset)
|
||||
if (!chip->pinmux_is_supported)
|
||||
return;
|
||||
|
||||
pinctrl_gpio_free_new(gc, offset);
|
||||
pinctrl_gpio_free(gc, offset);
|
||||
}
|
||||
|
||||
static int iproc_gpio_direction_input(struct gpio_chip *gc, unsigned gpio)
|
||||
|
@ -820,7 +820,7 @@ int pinctrl_gpio_request(struct gpio_chip *gc, unsigned int offset)
|
||||
EXPORT_SYMBOL_GPL(pinctrl_gpio_request);
|
||||
|
||||
/**
|
||||
* pinctrl_gpio_free_new() - free control on a single pin, currently used as GPIO
|
||||
* pinctrl_gpio_free() - free control on a single pin, currently used as GPIO
|
||||
* @gc: GPIO chip structure from the GPIO subsystem
|
||||
* @offset: hardware offset of the GPIO relative to the controller
|
||||
*
|
||||
@ -828,7 +828,7 @@ EXPORT_SYMBOL_GPL(pinctrl_gpio_request);
|
||||
* as part of their gpio_request() semantics, platforms and individual drivers
|
||||
* shall *NOT* request GPIO pins to be muxed in.
|
||||
*/
|
||||
void pinctrl_gpio_free_new(struct gpio_chip *gc, unsigned int offset)
|
||||
void pinctrl_gpio_free(struct gpio_chip *gc, unsigned int offset)
|
||||
{
|
||||
struct pinctrl_gpio_range *range;
|
||||
struct pinctrl_dev *pctldev;
|
||||
@ -848,7 +848,7 @@ void pinctrl_gpio_free_new(struct gpio_chip *gc, unsigned int offset)
|
||||
|
||||
mutex_unlock(&pctldev->mutex);
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(pinctrl_gpio_free_new);
|
||||
EXPORT_SYMBOL_GPL(pinctrl_gpio_free);
|
||||
|
||||
static int pinctrl_gpio_direction(unsigned gpio, bool input)
|
||||
{
|
||||
|
@ -211,7 +211,7 @@ static int npcmgpio_gpio_request(struct gpio_chip *chip, unsigned int offset)
|
||||
static void npcmgpio_gpio_free(struct gpio_chip *chip, unsigned int offset)
|
||||
{
|
||||
dev_dbg(chip->parent, "gpio_free: offset%d\n", offset);
|
||||
pinctrl_gpio_free_new(chip, offset);
|
||||
pinctrl_gpio_free(chip, offset);
|
||||
}
|
||||
|
||||
static void npcmgpio_irq_handler(struct irq_desc *desc)
|
||||
|
@ -207,7 +207,7 @@ static int npcmgpio_gpio_request(struct gpio_chip *chip, unsigned int offset)
|
||||
|
||||
static void npcmgpio_gpio_free(struct gpio_chip *chip, unsigned int offset)
|
||||
{
|
||||
pinctrl_gpio_free_new(chip, offset);
|
||||
pinctrl_gpio_free(chip, offset);
|
||||
}
|
||||
|
||||
static void npcmgpio_irq_handler(struct irq_desc *desc)
|
||||
|
@ -140,7 +140,7 @@ static int gpio_pin_request(struct gpio_chip *gc, unsigned offset)
|
||||
|
||||
static void gpio_pin_free(struct gpio_chip *gc, unsigned offset)
|
||||
{
|
||||
return pinctrl_gpio_free_new(gc, offset);
|
||||
return pinctrl_gpio_free(gc, offset);
|
||||
}
|
||||
|
||||
static void gpio_pin_set_value(struct sh_pfc_chip *chip, unsigned offset,
|
||||
|
@ -1181,7 +1181,7 @@ static void rzg2l_gpio_free(struct gpio_chip *chip, unsigned int offset)
|
||||
{
|
||||
unsigned int virq;
|
||||
|
||||
pinctrl_gpio_free_new(chip, offset);
|
||||
pinctrl_gpio_free(chip, offset);
|
||||
|
||||
virq = irq_find_mapping(chip->irq.domain, offset);
|
||||
if (virq)
|
||||
|
@ -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_new(chip, offset);
|
||||
pinctrl_gpio_free(chip, offset);
|
||||
|
||||
/*
|
||||
* Set the GPIO as an input to ensure that the next GPIO request won't
|
||||
|
@ -248,7 +248,7 @@ err1:
|
||||
if (!IS_ERR(plgpio->clk))
|
||||
clk_disable(plgpio->clk);
|
||||
err0:
|
||||
pinctrl_gpio_free_new(chip, offset);
|
||||
pinctrl_gpio_free(chip, offset);
|
||||
return ret;
|
||||
}
|
||||
|
||||
@ -278,7 +278,7 @@ disable_clk:
|
||||
if (!IS_ERR(plgpio->clk))
|
||||
clk_disable(plgpio->clk);
|
||||
|
||||
pinctrl_gpio_free_new(chip, offset);
|
||||
pinctrl_gpio_free(chip, offset);
|
||||
}
|
||||
|
||||
/* PLGPIO IRQ */
|
||||
|
@ -923,7 +923,7 @@ static int starfive_gpio_request(struct gpio_chip *gc, unsigned int gpio)
|
||||
|
||||
static void starfive_gpio_free(struct gpio_chip *gc, unsigned int gpio)
|
||||
{
|
||||
pinctrl_gpio_free_new(gc, gpio);
|
||||
pinctrl_gpio_free(gc, gpio);
|
||||
}
|
||||
|
||||
static int starfive_gpio_get_direction(struct gpio_chip *gc, unsigned int gpio)
|
||||
|
@ -552,7 +552,7 @@ static int jh7110_gpio_request(struct gpio_chip *gc, unsigned int gpio)
|
||||
|
||||
static void jh7110_gpio_free(struct gpio_chip *gc, unsigned int gpio)
|
||||
{
|
||||
pinctrl_gpio_free_new(gc, gpio);
|
||||
pinctrl_gpio_free(gc, gpio);
|
||||
}
|
||||
|
||||
static int jh7110_gpio_get_direction(struct gpio_chip *gc,
|
||||
|
@ -222,7 +222,7 @@ static int stm32_gpio_request(struct gpio_chip *chip, unsigned offset)
|
||||
|
||||
static void stm32_gpio_free(struct gpio_chip *chip, unsigned offset)
|
||||
{
|
||||
pinctrl_gpio_free_new(chip, offset);
|
||||
pinctrl_gpio_free(chip, offset);
|
||||
}
|
||||
|
||||
static int stm32_gpio_get(struct gpio_chip *chip, unsigned offset)
|
||||
|
@ -28,7 +28,7 @@ struct pinctrl_state;
|
||||
/* External interface to pin control */
|
||||
bool pinctrl_gpio_can_use_line(struct gpio_chip *gc, unsigned int offset);
|
||||
int pinctrl_gpio_request(struct gpio_chip *gc, unsigned int offset);
|
||||
void pinctrl_gpio_free_new(struct gpio_chip *gc, unsigned int offset);
|
||||
void pinctrl_gpio_free(struct gpio_chip *gc, unsigned int offset);
|
||||
int pinctrl_gpio_direction_input_new(struct gpio_chip *gc,
|
||||
unsigned int offset);
|
||||
int pinctrl_gpio_direction_output_new(struct gpio_chip *gc,
|
||||
@ -80,7 +80,7 @@ pinctrl_gpio_request(struct gpio_chip *gc, unsigned int offset)
|
||||
}
|
||||
|
||||
static inline void
|
||||
pinctrl_gpio_free_new(struct gpio_chip *gc, unsigned int offset)
|
||||
pinctrl_gpio_free(struct gpio_chip *gc, unsigned int offset)
|
||||
{
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user