* [PATCH] HSI: nokia-modem: use flags argument of devm_gpiod_get to set direction
@ 2015-06-08 9:53 Uwe Kleine-König
2015-06-10 2:24 ` Alexandre Courbot
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Uwe Kleine-König @ 2015-06-08 9:53 UTC (permalink / raw)
To: Sebastian Reichel; +Cc: kernel, linux-kernel, Linus Walleij, Alexandre Courbot
Since 39b2bbe3d715 (gpio: add flags argument to gpiod_get*() functions)
which appeared in v3.17-rc1, the gpiod_get* functions take an additional
parameter that allows to specify direction and initial value for output.
Use this to simplify the driver. Furthermore this is one caller less
that stops us making the flags argument to gpiod_get*() mandatory.
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
---
drivers/hsi/clients/nokia-modem.c | 7 ++-----
1 file changed, 2 insertions(+), 5 deletions(-)
diff --git a/drivers/hsi/clients/nokia-modem.c b/drivers/hsi/clients/nokia-modem.c
index bbb19231fa82..94670f2bb7d7 100644
--- a/drivers/hsi/clients/nokia-modem.c
+++ b/drivers/hsi/clients/nokia-modem.c
@@ -112,7 +112,8 @@ static int nokia_modem_gpio_probe(struct device *dev)
modem->gpio_amount = gpio_count;
for (i = 0; i < gpio_count; i++) {
- modem->gpios[i].gpio = devm_gpiod_get_index(dev, NULL, i);
+ modem->gpios[i].gpio = devm_gpiod_get_index(dev, NULL, i,
+ GPIOD_OUT_LOW);
if (IS_ERR(modem->gpios[i].gpio)) {
dev_err(dev, "Could not get gpio %d\n", i);
return PTR_ERR(modem->gpios[i].gpio);
@@ -125,10 +126,6 @@ static int nokia_modem_gpio_probe(struct device *dev)
return err;
}
- err = gpiod_direction_output(modem->gpios[i].gpio, 0);
- if (err)
- return err;
-
err = gpiod_export(modem->gpios[i].gpio, 0);
if (err)
return err;
--
2.1.4
^ permalink raw reply related [flat|nested] 4+ messages in thread* Re: [PATCH] HSI: nokia-modem: use flags argument of devm_gpiod_get to set direction
2015-06-08 9:53 [PATCH] HSI: nokia-modem: use flags argument of devm_gpiod_get to set direction Uwe Kleine-König
@ 2015-06-10 2:24 ` Alexandre Courbot
2015-06-10 12:57 ` Linus Walleij
2015-06-10 14:05 ` Sebastian Reichel
2 siblings, 0 replies; 4+ messages in thread
From: Alexandre Courbot @ 2015-06-10 2:24 UTC (permalink / raw)
To: Uwe Kleine-König, Sebastian Reichel
Cc: kernel, linux-kernel, Linus Walleij
On 06/08/2015 06:53 PM, Uwe Kleine-König wrote:
> Since 39b2bbe3d715 (gpio: add flags argument to gpiod_get*() functions)
> which appeared in v3.17-rc1, the gpiod_get* functions take an additional
> parameter that allows to specify direction and initial value for output.
>
> Use this to simplify the driver. Furthermore this is one caller less
> that stops us making the flags argument to gpiod_get*() mandatory.
Acked-by: Alexandre Courbot <acourbot@nvidia.com>
Thanks Uwe for taking care of this!
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] HSI: nokia-modem: use flags argument of devm_gpiod_get to set direction
2015-06-08 9:53 [PATCH] HSI: nokia-modem: use flags argument of devm_gpiod_get to set direction Uwe Kleine-König
2015-06-10 2:24 ` Alexandre Courbot
@ 2015-06-10 12:57 ` Linus Walleij
2015-06-10 14:05 ` Sebastian Reichel
2 siblings, 0 replies; 4+ messages in thread
From: Linus Walleij @ 2015-06-10 12:57 UTC (permalink / raw)
To: Uwe Kleine-König
Cc: Sebastian Reichel, Sascha Hauer, linux-kernel@vger.kernel.org,
Alexandre Courbot
On Mon, Jun 8, 2015 at 11:53 AM, Uwe Kleine-König
<u.kleine-koenig@pengutronix.de> wrote:
> Since 39b2bbe3d715 (gpio: add flags argument to gpiod_get*() functions)
> which appeared in v3.17-rc1, the gpiod_get* functions take an additional
> parameter that allows to specify direction and initial value for output.
>
> Use this to simplify the driver. Furthermore this is one caller less
> that stops us making the flags argument to gpiod_get*() mandatory.
>
> Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Acked-by: Linus Walleij <linus.walleij@linaro.org>
Yours,
Linus Walleij
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] HSI: nokia-modem: use flags argument of devm_gpiod_get to set direction
2015-06-08 9:53 [PATCH] HSI: nokia-modem: use flags argument of devm_gpiod_get to set direction Uwe Kleine-König
2015-06-10 2:24 ` Alexandre Courbot
2015-06-10 12:57 ` Linus Walleij
@ 2015-06-10 14:05 ` Sebastian Reichel
2 siblings, 0 replies; 4+ messages in thread
From: Sebastian Reichel @ 2015-06-10 14:05 UTC (permalink / raw)
To: Uwe Kleine-König
Cc: kernel, linux-kernel, Linus Walleij, Alexandre Courbot
[-- Attachment #1: Type: text/plain, Size: 482 bytes --]
Hi,
On Mon, Jun 08, 2015 at 11:53:45AM +0200, Uwe Kleine-König wrote:
> Since 39b2bbe3d715 (gpio: add flags argument to gpiod_get*() functions)
> which appeared in v3.17-rc1, the gpiod_get* functions take an additional
> parameter that allows to specify direction and initial value for output.
>
> Use this to simplify the driver. Furthermore this is one caller less
> that stops us making the flags argument to gpiod_get*() mandatory.
Thanks, queued.
-- Sebastian
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2015-06-10 14:05 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-06-08 9:53 [PATCH] HSI: nokia-modem: use flags argument of devm_gpiod_get to set direction Uwe Kleine-König
2015-06-10 2:24 ` Alexandre Courbot
2015-06-10 12:57 ` Linus Walleij
2015-06-10 14:05 ` Sebastian Reichel
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox