Commit e0b66a6e authored by Hans de Goede's avatar Hans de Goede Committed by Hans Verkuil
Browse files

media: ov2680: Pass correct number of controls to v4l2_ctrl_handler_init()



The ov2680 driver has 9 controls now and the call to
v4l2_ctrl_new_fwnode_properties() adds 2 more.

Tell v4l2_ctrl_handler_init() to pre-allocate space for 11
controls to match this.

Signed-off-by: default avatarHans de Goede <hdegoede@redhat.com>
Signed-off-by: default avatarSakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: default avatarHans Verkuil <hverkuil-cisco@xs4all.nl>
parent 440de616
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -971,7 +971,7 @@ static int ov2680_v4l2_register(struct ov2680_dev *sensor)
	if (ret < 0)
		return ret;

	v4l2_ctrl_handler_init(hdl, 5);
	v4l2_ctrl_handler_init(hdl, 11);

	hdl->lock = &sensor->lock;