From: Elgin Perumbilly Date: Mon, 5 Jan 2026 11:34:30 +0000 (+0530) Subject: media: i2c: ov2735: request reset GPIO as initially asserted X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1a84924258b9554ad5b857d2729bb2f553b8fed1;p=thirdparty%2Fkernel%2Flinux.git media: i2c: ov2735: request reset GPIO as initially asserted The reset GPIO must be requested in the asserted (HIGH) state to keep the sensor in standby during probe and power sequencing. Signed-off-by: Elgin Perumbilly Acked-by: Tarang Raval Signed-off-by: Sakari Ailus Signed-off-by: Hans Verkuil --- diff --git a/drivers/media/i2c/ov2735.c b/drivers/media/i2c/ov2735.c index b966002041417..dcb1add1fd9fc 100644 --- a/drivers/media/i2c/ov2735.c +++ b/drivers/media/i2c/ov2735.c @@ -993,7 +993,7 @@ static int ov2735_probe(struct i2c_client *client) "failed to parse endpoint configuration\n"); ov2735->reset_gpio = devm_gpiod_get_optional(ov2735->dev, - "reset", GPIOD_OUT_LOW); + "reset", GPIOD_OUT_HIGH); if (IS_ERR(ov2735->reset_gpio)) return dev_err_probe(ov2735->dev, PTR_ERR(ov2735->reset_gpio), "failed to get reset GPIO\n");