Lines Matching defs:ctrl_hdlr
542 struct v4l2_ctrl_handler *ctrl_hdlr;
548 ctrl_hdlr = &ov9734->ctrl_handler;
549 ret = v4l2_ctrl_handler_init(ctrl_hdlr, 8);
553 ctrl_hdlr->lock = &ov9734->mutex;
556 ov9734->link_freq = v4l2_ctrl_new_int_menu(ctrl_hdlr, &ov9734_ctrl_ops,
564 ov9734->pixel_rate = v4l2_ctrl_new_std(ctrl_hdlr, &ov9734_ctrl_ops,
570 ov9734->vblank = v4l2_ctrl_new_std(ctrl_hdlr, &ov9734_ctrl_ops,
575 ov9734->hblank = v4l2_ctrl_new_std(ctrl_hdlr, &ov9734_ctrl_ops,
581 v4l2_ctrl_new_std(ctrl_hdlr, &ov9734_ctrl_ops, V4L2_CID_ANALOGUE_GAIN,
584 v4l2_ctrl_new_std(ctrl_hdlr, &ov9734_ctrl_ops, V4L2_CID_DIGITAL_GAIN,
588 ov9734->exposure = v4l2_ctrl_new_std(ctrl_hdlr, &ov9734_ctrl_ops,
593 v4l2_ctrl_new_std_menu_items(ctrl_hdlr, &ov9734_ctrl_ops,
597 if (ctrl_hdlr->error)
598 return ctrl_hdlr->error;
600 ov9734->sd.ctrl_handler = ctrl_hdlr;