media: i2c: s5c73m3: Fix number in auto focus cluster
authorSebastian Gross <sebastian.gross@emlix.com>
Thu, 5 Dec 2019 10:31:08 +0000 (11:31 +0100)
committerMauro Carvalho Chehab <mchehab+huawei@kernel.org>
Thu, 12 Mar 2020 16:22:13 +0000 (17:22 +0100)
As of `s5c73m3.h` the auto focus cluster in `s5c73m3_ctrls` has 5 and not 6
controls.

Signed-off-by: Sebastian Gross <sebastian.gross@emlix.com>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
drivers/media/i2c/s5c73m3/s5c73m3-ctrls.c

index 8911660..71cf68a 100644 (file)
@@ -547,7 +547,7 @@ int s5c73m3_init_controls(struct s5c73m3 *state)
                                V4L2_CTRL_FLAG_UPDATE;
        v4l2_ctrl_auto_cluster(2, &ctrls->auto_iso, 0, false);
        ctrls->af_status->flags |= V4L2_CTRL_FLAG_VOLATILE;
-       v4l2_ctrl_cluster(6, &ctrls->focus_auto);
+       v4l2_ctrl_cluster(5, &ctrls->focus_auto);
 
        state->sensor_sd.ctrl_handler = hdl;