This is an automatic generated email to let you know that the following patch 
were queued:

Subject: media: ov5640: fix framerate update
Author:  Hugues Fruchet <hugues.fruc...@st.com>
Date:    Thu Feb 8 07:22:14 2018 -0500

After a framerate update through s_frame_interval(), the new
framerate was not taken into account when streaming,
but was taken into account on next session.
This was due to sensor->current_mode not updated accordingly to new
framerate setting in ov5640_s_frame_interval().

Signed-off-by: Hugues Fruchet <hugues.fruc...@st.com>
Signed-off-by: Sakari Ailus <sakari.ai...@linux.intel.com>
Signed-off-by: Mauro Carvalho Chehab <mche...@s-opensource.com>

 drivers/media/i2c/ov5640.c | 2 ++
 1 file changed, 2 insertions(+)

---

diff --git a/drivers/media/i2c/ov5640.c b/drivers/media/i2c/ov5640.c
index 3e7b43ce2b7a..03940f0cdfa6 100644
--- a/drivers/media/i2c/ov5640.c
+++ b/drivers/media/i2c/ov5640.c
@@ -2374,6 +2374,8 @@ static int ov5640_s_frame_interval(struct v4l2_subdev *sd,
 
        sensor->current_fr = frame_rate;
        sensor->frame_interval = fi->interval;
+       sensor->current_mode = ov5640_find_mode(sensor, frame_rate, mode->width,
+                                               mode->height, true);
        sensor->pending_mode_change = true;
 out:
        mutex_unlock(&sensor->lock);

_______________________________________________
linuxtv-commits mailing list
linuxtv-commits@linuxtv.org
https://www.linuxtv.org/cgi-bin/mailman/listinfo/linuxtv-commits

Reply via email to