aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/panel/panel-ld9040.c
diff options
context:
space:
mode:
authorAlexandre Courbot <acourbot@nvidia.com>2014-10-23 04:16:17 -0400
committerThierry Reding <treding@nvidia.com>2014-11-06 03:50:27 -0500
commit8a8cc83cbd081bd38673220d4c2816baa89cc788 (patch)
tree4b2d1761988527127d4a7ae265caf678bde494a6 /drivers/gpu/drm/panel/panel-ld9040.c
parentf114040e3ea6e07372334ade75d1ee0775c355e1 (diff)
drm/panel: ld9040: Update calls to gpiod_get*()
Add the new flags argument to calls of (devm_)gpiod_get*() and remove any direction setting code afterwards. Currently both forms (with or without the flags argument) are valid thanks to transitional macros in <linux/gpio/consumer.h>. These macros will be removed once all consumers are updated and the flags argument will become compulsary. Signed-off-by: Alexandre Courbot <acourbot@nvidia.com> Acked-by: Andrzej Hajda <a.hajda@samsung.com> Signed-off-by: Thierry Reding <treding@nvidia.com>
Diffstat (limited to 'drivers/gpu/drm/panel/panel-ld9040.c')
-rw-r--r--drivers/gpu/drm/panel/panel-ld9040.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/drivers/gpu/drm/panel/panel-ld9040.c b/drivers/gpu/drm/panel/panel-ld9040.c
index 42ac67b21e9f..dd1d3f2e624e 100644
--- a/drivers/gpu/drm/panel/panel-ld9040.c
+++ b/drivers/gpu/drm/panel/panel-ld9040.c
@@ -336,17 +336,12 @@ static int ld9040_probe(struct spi_device *spi)
336 if (ret < 0) 336 if (ret < 0)
337 return ret; 337 return ret;
338 338
339 ctx->reset_gpio = devm_gpiod_get(dev, "reset"); 339 ctx->reset_gpio = devm_gpiod_get(dev, "reset", GPIOD_OUT_HIGH);
340 if (IS_ERR(ctx->reset_gpio)) { 340 if (IS_ERR(ctx->reset_gpio)) {
341 dev_err(dev, "cannot get reset-gpios %ld\n", 341 dev_err(dev, "cannot get reset-gpios %ld\n",
342 PTR_ERR(ctx->reset_gpio)); 342 PTR_ERR(ctx->reset_gpio));
343 return PTR_ERR(ctx->reset_gpio); 343 return PTR_ERR(ctx->reset_gpio);
344 } 344 }
345 ret = gpiod_direction_output(ctx->reset_gpio, 1);
346 if (ret < 0) {
347 dev_err(dev, "cannot configure reset-gpios %d\n", ret);
348 return ret;
349 }
350 345
351 spi->bits_per_word = 9; 346 spi->bits_per_word = 9;
352 ret = spi_setup(spi); 347 ret = spi_setup(spi);