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

Subject: media: i2c: imx335: Fix hblank min/max values
Author:  Kieran Bingham <kieran.bing...@ideasonboard.com>
Date:    Mon Dec 11 18:29:48 2023 +0530

The V4L2_CID_HBLANK control is marked as readonly and can only be a
single value.

Set the minimum and maximum value to match the mode value.

Reviewed-by: Umang Jain <umang.j...@ideasonboard.com>
Signed-off-by: Kieran Bingham <kieran.bing...@ideasonboard.com>
Signed-off-by: Sakari Ailus <sakari.ai...@linux.intel.com>
Signed-off-by: Hans Verkuil <hverkuil-ci...@xs4all.nl>

 drivers/media/i2c/imx335.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

---

diff --git a/drivers/media/i2c/imx335.c b/drivers/media/i2c/imx335.c
index 58a9d9f29ef7..33795932809b 100644
--- a/drivers/media/i2c/imx335.c
+++ b/drivers/media/i2c/imx335.c
@@ -1046,8 +1046,8 @@ static int imx335_init_controls(struct imx335 *imx335)
        imx335->hblank_ctrl = v4l2_ctrl_new_std(ctrl_hdlr,
                                                &imx335_ctrl_ops,
                                                V4L2_CID_HBLANK,
-                                               IMX335_REG_MIN,
-                                               IMX335_REG_MAX,
+                                               mode->hblank,
+                                               mode->hblank,
                                                1, mode->hblank);
        if (imx335->hblank_ctrl)
                imx335->hblank_ctrl->flags |= V4L2_CTRL_FLAG_READ_ONLY;

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

Reply via email to