diff mbox series

[1/1] ov7251: Fix multiple problems in s_stream callback

Message ID 20220513094707.2082-1-sakari.ailus@linux.intel.com
State Accepted
Commit fda0f59a3aa41e0b724301747802e6ebeddae42a
Headers show
Series [1/1] ov7251: Fix multiple problems in s_stream callback | expand

Commit Message

Sakari Ailus May 13, 2022, 9:47 a.m. UTC
The s_stream callback had several issues:

- If pm_runtime_get_sync() fails, the usage_count is not put.

- The mutex wasn't unlocked and the sensor wasn't suspended if
  s_stream(subdev, 1) failed.

Fixes: ("media: i2c: Add pm_runtime support to ov7251")
Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com>
---
 drivers/media/i2c/ov7251.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Comments

Sakari Ailus May 13, 2022, 2:14 p.m. UTC | #1
On Fri, May 13, 2022 at 12:47:07PM +0300, Sakari Ailus wrote:
> The s_stream callback had several issues:
> 
> - If pm_runtime_get_sync() fails, the usage_count is not put.
> 
> - The mutex wasn't unlocked and the sensor wasn't suspended if
>   s_stream(subdev, 1) failed.
> 
> Fixes: ("media: i2c: Add pm_runtime support to ov7251")

I'm squashing this to the patch it fixes for the PR.
diff mbox series

Patch

diff --git a/drivers/media/i2c/ov7251.c b/drivers/media/i2c/ov7251.c
index 4867dc86cd2e4..603a4c7049e69 100644
--- a/drivers/media/i2c/ov7251.c
+++ b/drivers/media/i2c/ov7251.c
@@ -1340,7 +1340,7 @@  static int ov7251_s_stream(struct v4l2_subdev *subdev, int enable)
 	if (enable) {
 		ret = pm_runtime_get_sync(ov7251->dev);
 		if (ret < 0)
-			goto unlock_out;
+			goto err_power_down;
 
 		ret = ov7251_pll_configure(ov7251);
 		if (ret) {
@@ -1372,12 +1372,12 @@  static int ov7251_s_stream(struct v4l2_subdev *subdev, int enable)
 		pm_runtime_put(ov7251->dev);
 	}
 
-unlock_out:
 	mutex_unlock(&ov7251->lock);
 	return ret;
 
 err_power_down:
-	pm_runtime_put_noidle(ov7251->dev);
+	pm_runtime_put(ov7251->dev);
+	mutex_unlock(&ov7251->lock);
 	return ret;
 }