Lines Matching defs:ctrl_hdlr
738 struct v4l2_ctrl_handler *ctrl_hdlr;
742 ctrl_hdlr = &ov5675->ctrl_handler;
743 ret = v4l2_ctrl_handler_init(ctrl_hdlr, 8);
747 ctrl_hdlr->lock = &ov5675->mutex;
748 ov5675->link_freq = v4l2_ctrl_new_int_menu(ctrl_hdlr, &ov5675_ctrl_ops,
755 ov5675->pixel_rate = v4l2_ctrl_new_std(ctrl_hdlr, &ov5675_ctrl_ops,
760 ov5675->vblank = v4l2_ctrl_new_std(ctrl_hdlr, &ov5675_ctrl_ops,
767 ov5675->hblank = v4l2_ctrl_new_std(ctrl_hdlr, &ov5675_ctrl_ops,
773 v4l2_ctrl_new_std(ctrl_hdlr, &ov5675_ctrl_ops, V4L2_CID_ANALOGUE_GAIN,
776 v4l2_ctrl_new_std(ctrl_hdlr, &ov5675_ctrl_ops, V4L2_CID_DIGITAL_GAIN,
780 ov5675->exposure = v4l2_ctrl_new_std(ctrl_hdlr, &ov5675_ctrl_ops,
785 v4l2_ctrl_new_std_menu_items(ctrl_hdlr, &ov5675_ctrl_ops,
789 v4l2_ctrl_new_std(ctrl_hdlr, &ov5675_ctrl_ops,
791 v4l2_ctrl_new_std(ctrl_hdlr, &ov5675_ctrl_ops,
794 if (ctrl_hdlr->error) {
795 v4l2_ctrl_handler_free(ctrl_hdlr);
796 return ctrl_hdlr->error;
799 ov5675->sd.ctrl_handler = ctrl_hdlr;