Skip to content

Commit

Permalink
leds: aat1290: pass flags parameter to devm_gpiod_get
Browse files Browse the repository at this point in the history
Since 39b2bbe (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>
  • Loading branch information
Uwe Kleine-König authored and Bryan Wu committed Jun 22, 2015
1 parent 5e324eb commit 8a68771
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/leds/leds-aat1290.c
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Expand Down

0 comments on commit 8a68771

Please sign in to comment.