summaryrefslogtreecommitdiffstats
path: root/drivers/media/i2c/og01a1b.c
diff options
context:
space:
mode:
authorLaurent Pinchart <laurent.pinchart@ideasonboard.com>2023-09-14 20:16:21 +0200
committerHans Verkuil <hverkuil-cisco@xs4all.nl>2023-09-27 09:39:58 +0200
commit062361fc6c84e457778f2f80aa26b2d504d3fe21 (patch)
tree7817a114f3fa6805d945d3aee0f53d4bb28d96a9 /drivers/media/i2c/og01a1b.c
parentmedia: i2c: mt9m001: Drop check for reentrant .s_stream() (diff)
downloadlinux-062361fc6c84e457778f2f80aa26b2d504d3fe21.tar.xz
linux-062361fc6c84e457778f2f80aa26b2d504d3fe21.zip
media: i2c: og01a1b: Drop check for reentrant .s_stream()
The subdev .s_stream() operation shall not be called to start streaming on an already started subdev, or stop streaming on a stopped subdev. Remove the check that guards against that condition. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com> Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Diffstat (limited to 'drivers/media/i2c/og01a1b.c')
-rw-r--r--drivers/media/i2c/og01a1b.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/media/i2c/og01a1b.c b/drivers/media/i2c/og01a1b.c
index ccf6731ea2e2..956ad3e996b6 100644
--- a/drivers/media/i2c/og01a1b.c
+++ b/drivers/media/i2c/og01a1b.c
@@ -732,9 +732,6 @@ static int og01a1b_set_stream(struct v4l2_subdev *sd, int enable)
struct i2c_client *client = v4l2_get_subdevdata(sd);
int ret = 0;
- if (og01a1b->streaming == enable)
- return 0;
-
mutex_lock(&og01a1b->mutex);
if (enable) {
ret = pm_runtime_resume_and_get(&client->dev);