aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpio
diff options
context:
space:
mode:
authorLinus Walleij <linus.walleij@linaro.org>2017-09-22 05:02:10 -0400
committerLinus Walleij <linus.walleij@linaro.org>2017-09-22 05:02:10 -0400
commita9a1d2a7827c9cf780966d0879c73ef5a91380e9 (patch)
tree0cff713dda866dc344b9eea172ad126dfdc2af8d /drivers/gpio
parent2bd6bf03f4c1c59381d62c61d03f6cc3fe71f66e (diff)
pinctrl/gpio: Unify namespace for cross-calls
The pinctrl_request_gpio() and pinctrl_free_gpio() break the nice namespacing in the other cross-calls like pinctrl_gpio_foo(). Just rename them and all references so we have one namespace with all cross-calls under pinctrl_gpio_*(). Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'drivers/gpio')
-rw-r--r--drivers/gpio/gpio-aspeed.c4
-rw-r--r--drivers/gpio/gpio-em.c4
-rw-r--r--drivers/gpio/gpio-pxa.c4
-rw-r--r--drivers/gpio/gpio-rcar.c4
-rw-r--r--drivers/gpio/gpio-tegra.c4
-rw-r--r--drivers/gpio/gpio-tz1090.c4
-rw-r--r--drivers/gpio/gpiolib.c4
7 files changed, 14 insertions, 14 deletions
diff --git a/drivers/gpio/gpio-aspeed.c b/drivers/gpio/gpio-aspeed.c
index bfc53995064a..c269cc199707 100644
--- a/drivers/gpio/gpio-aspeed.c
+++ b/drivers/gpio/gpio-aspeed.c
@@ -536,12 +536,12 @@ static int aspeed_gpio_request(struct gpio_chip *chip, unsigned int offset)
536 if (!have_gpio(gpiochip_get_data(chip), offset)) 536 if (!have_gpio(gpiochip_get_data(chip), offset))
537 return -ENODEV; 537 return -ENODEV;
538 538
539 return pinctrl_request_gpio(chip->base + offset); 539 return pinctrl_gpio_request(chip->base + offset);
540} 540}
541 541
542static void aspeed_gpio_free(struct gpio_chip *chip, unsigned int offset) 542static void aspeed_gpio_free(struct gpio_chip *chip, unsigned int offset)
543{ 543{
544 pinctrl_free_gpio(chip->base + offset); 544 pinctrl_gpio_free(chip->base + offset);
545} 545}
546 546
547static inline void __iomem *bank_debounce_reg(struct aspeed_gpio *gpio, 547static inline void __iomem *bank_debounce_reg(struct aspeed_gpio *gpio,
diff --git a/drivers/gpio/gpio-em.c b/drivers/gpio/gpio-em.c
index 8d32ccc980d9..b86e09e1b13b 100644
--- a/drivers/gpio/gpio-em.c
+++ b/drivers/gpio/gpio-em.c
@@ -239,12 +239,12 @@ static int em_gio_to_irq(struct gpio_chip *chip, unsigned offset)
239 239
240static int em_gio_request(struct gpio_chip *chip, unsigned offset) 240static int em_gio_request(struct gpio_chip *chip, unsigned offset)
241{ 241{
242 return pinctrl_request_gpio(chip->base + offset); 242 return pinctrl_gpio_request(chip->base + offset);
243} 243}
244 244
245static void em_gio_free(struct gpio_chip *chip, unsigned offset) 245static void em_gio_free(struct gpio_chip *chip, unsigned offset)
246{ 246{
247 pinctrl_free_gpio(chip->base + offset); 247 pinctrl_gpio_free(chip->base + offset);
248 248
249 /* Set the GPIO as an input to ensure that the next GPIO request won't 249 /* Set the GPIO as an input to ensure that the next GPIO request won't
250 * drive the GPIO pin as an output. 250 * drive the GPIO pin as an output.
diff --git a/drivers/gpio/gpio-pxa.c b/drivers/gpio/gpio-pxa.c
index 6029899789f3..da68d6cbc1e4 100644
--- a/drivers/gpio/gpio-pxa.c
+++ b/drivers/gpio/gpio-pxa.c
@@ -332,12 +332,12 @@ static int pxa_gpio_of_xlate(struct gpio_chip *gc,
332 332
333static int pxa_gpio_request(struct gpio_chip *chip, unsigned int offset) 333static int pxa_gpio_request(struct gpio_chip *chip, unsigned int offset)
334{ 334{
335 return pinctrl_request_gpio(chip->base + offset); 335 return pinctrl_gpio_request(chip->base + offset);
336} 336}
337 337
338static void pxa_gpio_free(struct gpio_chip *chip, unsigned int offset) 338static void pxa_gpio_free(struct gpio_chip *chip, unsigned int offset)
339{ 339{
340 pinctrl_free_gpio(chip->base + offset); 340 pinctrl_gpio_free(chip->base + offset);
341} 341}
342 342
343static int pxa_init_gpio_chip(struct pxa_gpio_chip *pchip, int ngpio, 343static int pxa_init_gpio_chip(struct pxa_gpio_chip *pchip, int ngpio,
diff --git a/drivers/gpio/gpio-rcar.c b/drivers/gpio/gpio-rcar.c
index 1f0871553fd2..43b51045aa47 100644
--- a/drivers/gpio/gpio-rcar.c
+++ b/drivers/gpio/gpio-rcar.c
@@ -249,7 +249,7 @@ static int gpio_rcar_request(struct gpio_chip *chip, unsigned offset)
249 if (error < 0) 249 if (error < 0)
250 return error; 250 return error;
251 251
252 error = pinctrl_request_gpio(chip->base + offset); 252 error = pinctrl_gpio_request(chip->base + offset);
253 if (error) 253 if (error)
254 pm_runtime_put(&p->pdev->dev); 254 pm_runtime_put(&p->pdev->dev);
255 255
@@ -260,7 +260,7 @@ static void gpio_rcar_free(struct gpio_chip *chip, unsigned offset)
260{ 260{
261 struct gpio_rcar_priv *p = gpiochip_get_data(chip); 261 struct gpio_rcar_priv *p = gpiochip_get_data(chip);
262 262
263 pinctrl_free_gpio(chip->base + offset); 263 pinctrl_gpio_free(chip->base + offset);
264 264
265 /* 265 /*
266 * Set the GPIO as an input to ensure that the next GPIO request won't 266 * Set the GPIO as an input to ensure that the next GPIO request won't
diff --git a/drivers/gpio/gpio-tegra.c b/drivers/gpio/gpio-tegra.c
index fbaf974277df..8db47f671708 100644
--- a/drivers/gpio/gpio-tegra.c
+++ b/drivers/gpio/gpio-tegra.c
@@ -141,14 +141,14 @@ static void tegra_gpio_disable(struct tegra_gpio_info *tgi, unsigned int gpio)
141 141
142static int tegra_gpio_request(struct gpio_chip *chip, unsigned int offset) 142static int tegra_gpio_request(struct gpio_chip *chip, unsigned int offset)
143{ 143{
144 return pinctrl_request_gpio(offset); 144 return pinctrl_gpio_request(offset);
145} 145}
146 146
147static void tegra_gpio_free(struct gpio_chip *chip, unsigned int offset) 147static void tegra_gpio_free(struct gpio_chip *chip, unsigned int offset)
148{ 148{
149 struct tegra_gpio_info *tgi = gpiochip_get_data(chip); 149 struct tegra_gpio_info *tgi = gpiochip_get_data(chip);
150 150
151 pinctrl_free_gpio(offset); 151 pinctrl_gpio_free(offset);
152 tegra_gpio_disable(tgi, offset); 152 tegra_gpio_disable(tgi, offset);
153} 153}
154 154
diff --git a/drivers/gpio/gpio-tz1090.c b/drivers/gpio/gpio-tz1090.c
index 22c5be65051f..0bb9bb583889 100644
--- a/drivers/gpio/gpio-tz1090.c
+++ b/drivers/gpio/gpio-tz1090.c
@@ -232,7 +232,7 @@ static int tz1090_gpio_request(struct gpio_chip *chip, unsigned int offset)
232 struct tz1090_gpio_bank *bank = gpiochip_get_data(chip); 232 struct tz1090_gpio_bank *bank = gpiochip_get_data(chip);
233 int ret; 233 int ret;
234 234
235 ret = pinctrl_request_gpio(chip->base + offset); 235 ret = pinctrl_gpio_request(chip->base + offset);
236 if (ret) 236 if (ret)
237 return ret; 237 return ret;
238 238
@@ -246,7 +246,7 @@ static void tz1090_gpio_free(struct gpio_chip *chip, unsigned int offset)
246{ 246{
247 struct tz1090_gpio_bank *bank = gpiochip_get_data(chip); 247 struct tz1090_gpio_bank *bank = gpiochip_get_data(chip);
248 248
249 pinctrl_free_gpio(chip->base + offset); 249 pinctrl_gpio_free(chip->base + offset);
250 250
251 tz1090_gpio_clear_bit(bank, REG_GPIO_BIT_EN, offset); 251 tz1090_gpio_clear_bit(bank, REG_GPIO_BIT_EN, offset);
252} 252}
diff --git a/drivers/gpio/gpiolib.c b/drivers/gpio/gpiolib.c
index eb80dac4e26a..a9cb825ef335 100644
--- a/drivers/gpio/gpiolib.c
+++ b/drivers/gpio/gpiolib.c
@@ -1859,7 +1859,7 @@ static inline void gpiochip_irqchip_free_valid_mask(struct gpio_chip *gpiochip)
1859 */ 1859 */
1860int gpiochip_generic_request(struct gpio_chip *chip, unsigned offset) 1860int gpiochip_generic_request(struct gpio_chip *chip, unsigned offset)
1861{ 1861{
1862 return pinctrl_request_gpio(chip->gpiodev->base + offset); 1862 return pinctrl_gpio_request(chip->gpiodev->base + offset);
1863} 1863}
1864EXPORT_SYMBOL_GPL(gpiochip_generic_request); 1864EXPORT_SYMBOL_GPL(gpiochip_generic_request);
1865 1865
@@ -1870,7 +1870,7 @@ EXPORT_SYMBOL_GPL(gpiochip_generic_request);
1870 */ 1870 */
1871void gpiochip_generic_free(struct gpio_chip *chip, unsigned offset) 1871void gpiochip_generic_free(struct gpio_chip *chip, unsigned offset)
1872{ 1872{
1873 pinctrl_free_gpio(chip->gpiodev->base + offset); 1873 pinctrl_gpio_free(chip->gpiodev->base + offset);
1874} 1874}
1875EXPORT_SYMBOL_GPL(gpiochip_generic_free); 1875EXPORT_SYMBOL_GPL(gpiochip_generic_free);
1876 1876