Lines Matching refs:s_ctrl
11 2) How do I set the control's value? (i.e. s_ctrl)
105 .s_ctrl = v4l2_subdev_s_ctrl,
228 This will call s_ctrl for all controls unconditionally. Effectively this
236 .s_ctrl = foo_s_ctrl,
239 Usually all you need is s_ctrl:
357 For try/s_ctrl the new values (i.e. as passed by the user) are filled in and
358 you can modify them in try_ctrl or set them in s_ctrl. The 'cur' union
361 If s_ctrl returns 0 (OK), then the control framework will copy the new final
451 s_ctrl.
489 So when s_ctrl is called with V4L2_CID_AUDIO_VOLUME as argument, you should set
686 ...and in video_ops.s_ctrl:
692 When s_ctrl is called by the framework the ctrl_handler.lock is already taken, so