All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] leds: ktd2692: pass flags parameter to devm_gpiod_get
@ 2015-06-12  7:32 Uwe Kleine-König
  2015-06-12 11:35 ` Jacek Anaszewski
  0 siblings, 1 reply; 3+ messages in thread
From: Uwe Kleine-König @ 2015-06-12  7:32 UTC (permalink / raw)
  To: Bryan Wu, Richard Purdie, Jacek Anaszewski
  Cc: linux-leds, kernel, Alexandre Courbot, Linus Walleij, Ingi Kim,
	Varka Bhadram, Seung-Woo Kim

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.

In this case the driver cannot easily be simplified but as the flags
parameter will become mandatory soon this change is necessary
beforehand.

Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
---
Hello,

this patch applies to next and is only necessary on top of b7da8c5c725c
(leds: Add ktd2692 flash LED driver) which currently sits in next.

Note I plan to make the flags parameter mandatory for 4.3. So unless
this change gets into 4.2, would it be ok to let it go in via the gpio
tree?

Best regards
Uwe

 drivers/leds/leds-ktd2692.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/leds/leds-ktd2692.c b/drivers/leds/leds-ktd2692.c
index fe05cd113b9d..2ae8c4d17ff8 100644
--- a/drivers/leds/leds-ktd2692.c
+++ b/drivers/leds/leds-ktd2692.c
@@ -295,14 +295,14 @@ static int ktd2692_parse_dt(struct ktd2692_context *led, struct device *dev,
 	if (!dev->of_node)
 		return -ENXIO;
 
-	led->ctrl_gpio = devm_gpiod_get(dev, "ctrl");
+	led->ctrl_gpio = devm_gpiod_get(dev, "ctrl", GPIOD_ASIS);
 	if (IS_ERR(led->ctrl_gpio)) {
 		ret = PTR_ERR(led->ctrl_gpio);
 		dev_err(dev, "cannot get ctrl-gpios %d\n", ret);
 		return ret;
 	}
 
-	led->aux_gpio = devm_gpiod_get(dev, "aux");
+	led->aux_gpio = devm_gpiod_get(dev, "aux", GPIOD_ASIS);
 	if (IS_ERR(led->aux_gpio)) {
 		ret = PTR_ERR(led->aux_gpio);
 		dev_err(dev, "cannot get aux-gpios %d\n", ret);
-- 
2.1.4

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] leds: ktd2692: pass flags parameter to devm_gpiod_get
  2015-06-12  7:32 [PATCH] leds: ktd2692: pass flags parameter to devm_gpiod_get Uwe Kleine-König
@ 2015-06-12 11:35 ` Jacek Anaszewski
  2015-06-16 19:12   ` Bryan Wu
  0 siblings, 1 reply; 3+ messages in thread
From: Jacek Anaszewski @ 2015-06-12 11:35 UTC (permalink / raw)
  To: Uwe Kleine-König
  Cc: Bryan Wu, Richard Purdie, linux-leds, kernel, Alexandre Courbot,
	Linus Walleij, Ingi Kim, Varka Bhadram, Seung-Woo Kim

Hi Uwe,

On 06/12/2015 09:32 AM, 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.
>
> In this case the driver cannot easily be simplified but as the flags
> parameter will become mandatory soon this change is necessary
> beforehand.
>
> Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>

Acked-by: Jacek Anaszewski <j.anaszewski@samsung.com>

-- 
Best Regards,
Jacek Anaszewski

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] leds: ktd2692: pass flags parameter to devm_gpiod_get
  2015-06-12 11:35 ` Jacek Anaszewski
@ 2015-06-16 19:12   ` Bryan Wu
  0 siblings, 0 replies; 3+ messages in thread
From: Bryan Wu @ 2015-06-16 19:12 UTC (permalink / raw)
  To: Jacek Anaszewski
  Cc: Uwe Kleine-König, Richard Purdie, Linux LED Subsystem,
	kernel, Alexandre Courbot, Linus Walleij, Ingi Kim, Varka Bhadram,
	Seung-Woo Kim

On Fri, Jun 12, 2015 at 4:35 AM, Jacek Anaszewski
<j.anaszewski@samsung.com> wrote:
> Hi Uwe,
>
> On 06/12/2015 09:32 AM, 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.
>>
>> In this case the driver cannot easily be simplified but as the flags
>> parameter will become mandatory soon this change is necessary
>> beforehand.
>>
>> Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
>
>
> Acked-by: Jacek Anaszewski <j.anaszewski@samsung.com>
>
Thanks, merged.
-Bryan

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2015-06-16 19:12 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-06-12  7:32 [PATCH] leds: ktd2692: pass flags parameter to devm_gpiod_get Uwe Kleine-König
2015-06-12 11:35 ` Jacek Anaszewski
2015-06-16 19:12   ` Bryan Wu

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.