Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7c869651 authored by Hans Verkuil's avatar Hans Verkuil Committed by Mauro Carvalho Chehab
Browse files

[media] s3c-camif: Remove use of deprecated V4L2_CTRL_FLAG_DISABLED



I came across this while checking the kernel use of V4L2_CTRL_FLAG_DISABLED.

This flag should not be used with the control framework. Instead, just don't
add the control at all.

Signed-off-by: default avatarHans Verkuil <hans.verkuil@cisco.com>
Acked-by: default avatarSylwester Nawrocki <s.nawrocki@samsung.com>
Signed-off-by: default avatarMauro Carvalho Chehab <m.chehab@samsung.com>
parent 3857fcde
Loading
Loading
Loading
Loading
+8 −7
Original line number Diff line number Diff line
@@ -1592,6 +1592,7 @@ int s3c_camif_create_subdev(struct camif_dev *camif)
			ARRAY_SIZE(s3c_camif_test_pattern_menu) - 1, 0, 0,
			s3c_camif_test_pattern_menu);

	if (camif->variant->has_img_effect) {
		camif->ctrl_colorfx = v4l2_ctrl_new_std_menu(handler,
				&s3c_camif_subdev_ctrl_ops,
				V4L2_CID_COLORFX, V4L2_COLORFX_SET_CBCR,
@@ -1600,18 +1601,18 @@ int s3c_camif_create_subdev(struct camif_dev *camif)
		camif->ctrl_colorfx_cbcr = v4l2_ctrl_new_std(handler,
				&s3c_camif_subdev_ctrl_ops,
				V4L2_CID_COLORFX_CBCR, 0, 0xffff, 1, 0);
	}

	if (handler->error) {
		v4l2_ctrl_handler_free(handler);
		media_entity_cleanup(&sd->entity);
		return handler->error;
	}

	if (camif->variant->has_img_effect)
		v4l2_ctrl_auto_cluster(2, &camif->ctrl_colorfx,
			       V4L2_COLORFX_SET_CBCR, false);
	if (!camif->variant->has_img_effect) {
		camif->ctrl_colorfx->flags |= V4L2_CTRL_FLAG_DISABLED;
		camif->ctrl_colorfx_cbcr->flags |= V4L2_CTRL_FLAG_DISABLED;
	}

	sd->ctrl_handler = handler;
	v4l2_set_subdevdata(sd, camif);