Skip to content

Commit

Permalink
media: ov2680: Fix regulators being left enabled on ov2680_power_on()…
Browse files Browse the repository at this point in the history
… errors

[ Upstream commit 84b4bd7 ]

When the ov2680_power_on() "sensor soft reset failed" path is hit during
probe() the WARN() about putting an enabled regulator at
drivers/regulator/core.c:2398 triggers 3 times (once for each regulator),
filling dmesg with backtraces.

Fix this by properly disabling the regulators on ov2680_power_on() errors.

Fixes: 3ee47ca ("media: ov2680: Add Omnivision OV2680 sensor driver")
Reviewed-by: Daniel Scally <dan.scally@ideasonboard.com>
Acked-by: Rui Miguel Silva <rmfrfs@gmail.com>
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
  • Loading branch information
jwrdegoede authored and gregkh committed Sep 13, 2023
1 parent 85fb0b9 commit 86a41ad
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions drivers/media/i2c/ov2680.c
Expand Up @@ -475,7 +475,7 @@ static int ov2680_power_on(struct ov2680_dev *sensor)
ret = ov2680_write_reg(sensor, OV2680_REG_SOFT_RESET, 0x01);
if (ret != 0) {
dev_err(dev, "sensor soft reset failed\n");
return ret;
goto err_disable_regulators;
}
usleep_range(1000, 2000);
} else {
Expand All @@ -485,7 +485,7 @@ static int ov2680_power_on(struct ov2680_dev *sensor)

ret = clk_prepare_enable(sensor->xvclk);
if (ret < 0)
return ret;
goto err_disable_regulators;

sensor->is_enabled = true;

Expand All @@ -495,6 +495,10 @@ static int ov2680_power_on(struct ov2680_dev *sensor)
ov2680_stream_disable(sensor);

return 0;

err_disable_regulators:
regulator_bulk_disable(OV2680_NUM_SUPPLIES, sensor->supplies);
return ret;
}

static int ov2680_s_power(struct v4l2_subdev *sd, int on)
Expand Down

0 comments on commit 86a41ad

Please sign in to comment.