aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/leds
diff options
context:
space:
mode:
authorUwe Kleine-König <u.kleine-koenig@pengutronix.de>2015-06-12 00:35:43 -0700
committerBryan Wu <cooloney@gmail.com>2015-06-22 13:57:24 -0700
commit8a687719d03131f656d5eb9a578ba3764f31ddab (patch)
treea5432828bf1799e60d1835877d5d3c64124e3571 /drivers/leds
parentleds: ktd2692: pass flags parameter to devm_gpiod_get (diff)
downloadlinux-dev-8a687719d03131f656d5eb9a578ba3764f31ddab.tar.xz
linux-dev-8a687719d03131f656d5eb9a578ba3764f31ddab.zip
leds: aat1290: pass flags parameter to devm_gpiod_get
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> Signed-off-by: Bryan Wu <cooloney@gmail.com>
Diffstat (limited to 'drivers/leds')
-rw-r--r--drivers/leds/leds-aat1290.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/leds/leds-aat1290.c b/drivers/leds/leds-aat1290.c
index 5de2f19d3c0d..fd7c25fd29c1 100644
--- a/drivers/leds/leds-aat1290.c
+++ b/drivers/leds/leds-aat1290.c
@@ -247,14 +247,14 @@ static int aat1290_led_parse_dt(struct aat1290_led *led,
#endif
int ret = 0;
- led->gpio_fl_en = devm_gpiod_get(dev, "flen");
+ led->gpio_fl_en = devm_gpiod_get(dev, "flen", GPIOD_ASIS);
if (IS_ERR(led->gpio_fl_en)) {
ret = PTR_ERR(led->gpio_fl_en);
dev_err(dev, "Unable to claim gpio \"flen\".\n");
return ret;
}
- led->gpio_en_set = devm_gpiod_get(dev, "enset");
+ led->gpio_en_set = devm_gpiod_get(dev, "enset", GPIOD_ASIS);
if (IS_ERR(led->gpio_en_set)) {
ret = PTR_ERR(led->gpio_en_set);
dev_err(dev, "Unable to claim gpio \"enset\".\n");