Lines Matching defs:ctrl_hdlr
524 struct v4l2_ctrl_handler *ctrl_hdlr;
534 ctrl_hdlr = &ov01a10->ctrl_handler;
535 ret = v4l2_ctrl_handler_init(ctrl_hdlr, 12);
542 ov01a10->link_freq = v4l2_ctrl_new_int_menu(ctrl_hdlr,
550 ov01a10->pixel_rate = v4l2_ctrl_new_std(ctrl_hdlr, &ov01a10_ctrl_ops,
557 ov01a10->vblank = v4l2_ctrl_new_std(ctrl_hdlr, &ov01a10_ctrl_ops,
562 ov01a10->hblank = v4l2_ctrl_new_std(ctrl_hdlr, &ov01a10_ctrl_ops,
568 v4l2_ctrl_new_std(ctrl_hdlr, &ov01a10_ctrl_ops, V4L2_CID_ANALOGUE_GAIN,
571 v4l2_ctrl_new_std(ctrl_hdlr, &ov01a10_ctrl_ops, V4L2_CID_DIGITAL_GAIN,
576 ov01a10->exposure = v4l2_ctrl_new_std(ctrl_hdlr, &ov01a10_ctrl_ops,
583 v4l2_ctrl_new_std_menu_items(ctrl_hdlr, &ov01a10_ctrl_ops,
588 v4l2_ctrl_new_std(ctrl_hdlr, &ov01a10_ctrl_ops, V4L2_CID_HFLIP,
590 v4l2_ctrl_new_std(ctrl_hdlr, &ov01a10_ctrl_ops, V4L2_CID_VFLIP,
593 ret = v4l2_ctrl_new_fwnode_properties(ctrl_hdlr, &ov01a10_ctrl_ops,
598 if (ctrl_hdlr->error) {
599 ret = ctrl_hdlr->error;
603 ov01a10->sd.ctrl_handler = ctrl_hdlr;
607 v4l2_ctrl_handler_free(ctrl_hdlr);