Commit 165457e6 authored by Laurent Pinchart's avatar Laurent Pinchart Committed by Hans Verkuil

media: i2c: ov5693: Drop the unused streaming flag

The streaming flag in the driver's private structure is set but never
used. Drop it.
Signed-off-by: default avatarLaurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: default avatarDaniel Scally <dan.scally@ideasonboard.com>
Reviewed-by: default avatarTommaso Merciai <tomm.merciai@gmail.com>
Signed-off-by: default avatarSakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: default avatarHans Verkuil <hverkuil-cisco@xs4all.nl>
parent b92f8f35
...@@ -154,7 +154,6 @@ struct ov5693_device { ...@@ -154,7 +154,6 @@ struct ov5693_device {
unsigned int inc_y_odd; unsigned int inc_y_odd;
unsigned int vts; unsigned int vts;
} mode; } mode;
bool streaming;
struct v4l2_subdev sd; struct v4l2_subdev sd;
struct media_pad pad; struct media_pad pad;
...@@ -996,8 +995,6 @@ static int ov5693_s_stream(struct v4l2_subdev *sd, int enable) ...@@ -996,8 +995,6 @@ static int ov5693_s_stream(struct v4l2_subdev *sd, int enable)
if (ret) if (ret)
goto err_power_down; goto err_power_down;
ov5693->streaming = !!enable;
if (!enable) if (!enable)
pm_runtime_put(ov5693->dev); pm_runtime_put(ov5693->dev);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment