Commit 8ff3cf48 authored by Sebastian Gross's avatar Sebastian Gross Committed by Mauro Carvalho Chehab
Browse files

media: i2c: s5c73m3: Fix number in auto focus cluster



As of `s5c73m3.h` the auto focus cluster in `s5c73m3_ctrls` has 5 and not 6
controls.

Signed-off-by: default avatarSebastian Gross <sebastian.gross@emlix.com>
Signed-off-by: default avatarHans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab+huawei@kernel.org>
parent 2362a3d1
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;