Lines Matching refs:ctrl_hdlr
1268 struct v4l2_ctrl_handler *ctrl_hdlr;
1279 ctrl_hdlr = &ov13b->ctrl_handler;
1280 ret = v4l2_ctrl_handler_init(ctrl_hdlr, 10);
1285 ctrl_hdlr->lock = &ov13b->mutex;
1287 ov13b->link_freq = v4l2_ctrl_new_int_menu(ctrl_hdlr,
1299 ov13b->pixel_rate = v4l2_ctrl_new_std(ctrl_hdlr, &ov13b10_ctrl_ops,
1307 ov13b->vblank = v4l2_ctrl_new_std(ctrl_hdlr, &ov13b10_ctrl_ops,
1315 ov13b->hblank = v4l2_ctrl_new_std(ctrl_hdlr, &ov13b10_ctrl_ops,
1322 ov13b->exposure = v4l2_ctrl_new_std(ctrl_hdlr, &ov13b10_ctrl_ops,
1328 v4l2_ctrl_new_std(ctrl_hdlr, &ov13b10_ctrl_ops, V4L2_CID_ANALOGUE_GAIN,
1333 v4l2_ctrl_new_std(ctrl_hdlr, &ov13b10_ctrl_ops, V4L2_CID_DIGITAL_GAIN,
1337 v4l2_ctrl_new_std_menu_items(ctrl_hdlr, &ov13b10_ctrl_ops,
1342 v4l2_ctrl_new_std(ctrl_hdlr, &ov13b10_ctrl_ops,
1344 v4l2_ctrl_new_std(ctrl_hdlr, &ov13b10_ctrl_ops,
1347 if (ctrl_hdlr->error) {
1348 ret = ctrl_hdlr->error;
1358 ret = v4l2_ctrl_new_fwnode_properties(ctrl_hdlr, &ov13b10_ctrl_ops,
1363 ov13b->sd.ctrl_handler = ctrl_hdlr;
1368 v4l2_ctrl_handler_free(ctrl_hdlr);