Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a33c380e authored by Uwe Kleine-König's avatar Uwe Kleine-König
Browse files

media: i2c/adp1653: set enable gpio to output



Without setting the direction of a gpio to output a call to
gpiod_set_value doesn't have a defined outcome.

Furthermore this is one caller less that stops us making the flags
argument to gpiod_get*() mandatory.

Acked-by: default avatarSakari Ailus <sakari.ailus@iki.fi>
Acked-by: default avatarPavel Machek <pavel@ucw.cz>
Signed-off-by: default avatarUwe Kleine-König <u.kleine-koenig@pengutronix.de>
parent 7d891dbe
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -465,7 +465,7 @@ static int adp1653_of_init(struct i2c_client *client,

	of_node_put(child);

	pd->enable_gpio = devm_gpiod_get(&client->dev, "enable");
	pd->enable_gpio = devm_gpiod_get(&client->dev, "enable", GPIOD_OUT_LOW);
	if (!pd->enable_gpio) {
		dev_err(&client->dev, "Error getting GPIO\n");
		return -EINVAL;