aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUwe Kleine-König <u.kleine-koenig@pengutronix.de>2015-06-12 03:32:23 -0400
committerBryan Wu <cooloney@gmail.com>2015-06-22 16:57:16 -0400
commit5e324ebf014afdde76130f9b4f65ce64746c7af2 (patch)
tree8cef819d23bc4a27d01cd128344e6705a1abff03
parentb83fae0c0c5ea97aad4f762dae99342f94523f42 (diff)
leds: ktd2692: 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>
-rw-r--r--drivers/leds/leds-ktd2692.c4
1 files 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,
295 if (!dev->of_node) 295 if (!dev->of_node)
296 return -ENXIO; 296 return -ENXIO;
297 297
298 led->ctrl_gpio = devm_gpiod_get(dev, "ctrl"); 298 led->ctrl_gpio = devm_gpiod_get(dev, "ctrl", GPIOD_ASIS);
299 if (IS_ERR(led->ctrl_gpio)) { 299 if (IS_ERR(led->ctrl_gpio)) {
300 ret = PTR_ERR(led->ctrl_gpio); 300 ret = PTR_ERR(led->ctrl_gpio);
301 dev_err(dev, "cannot get ctrl-gpios %d\n", ret); 301 dev_err(dev, "cannot get ctrl-gpios %d\n", ret);
302 return ret; 302 return ret;
303 } 303 }
304 304
305 led->aux_gpio = devm_gpiod_get(dev, "aux"); 305 led->aux_gpio = devm_gpiod_get(dev, "aux", GPIOD_ASIS);
306 if (IS_ERR(led->aux_gpio)) { 306 if (IS_ERR(led->aux_gpio)) {
307 ret = PTR_ERR(led->aux_gpio); 307 ret = PTR_ERR(led->aux_gpio);
308 dev_err(dev, "cannot get aux-gpios %d\n", ret); 308 dev_err(dev, "cannot get aux-gpios %d\n", ret);