Lines Matching refs:ctrl_hdlr
1592 struct v4l2_ctrl_handler *ctrl_hdlr; in ov13858_init_controls() local
1602 ctrl_hdlr = &ov13858->ctrl_handler; in ov13858_init_controls()
1603 ret = v4l2_ctrl_handler_init(ctrl_hdlr, 8); in ov13858_init_controls()
1608 ctrl_hdlr->lock = &ov13858->mutex; in ov13858_init_controls()
1609 ov13858->link_freq = v4l2_ctrl_new_int_menu(ctrl_hdlr, in ov13858_init_controls()
1621 ov13858->pixel_rate = v4l2_ctrl_new_std(ctrl_hdlr, &ov13858_ctrl_ops, in ov13858_init_controls()
1630 ctrl_hdlr, &ov13858_ctrl_ops, V4L2_CID_VBLANK, in ov13858_init_controls()
1637 ctrl_hdlr, &ov13858_ctrl_ops, V4L2_CID_HBLANK, in ov13858_init_controls()
1644 ctrl_hdlr, &ov13858_ctrl_ops, in ov13858_init_controls()
1649 v4l2_ctrl_new_std(ctrl_hdlr, &ov13858_ctrl_ops, V4L2_CID_ANALOGUE_GAIN, in ov13858_init_controls()
1654 v4l2_ctrl_new_std(ctrl_hdlr, &ov13858_ctrl_ops, V4L2_CID_DIGITAL_GAIN, in ov13858_init_controls()
1658 v4l2_ctrl_new_std_menu_items(ctrl_hdlr, &ov13858_ctrl_ops, in ov13858_init_controls()
1662 if (ctrl_hdlr->error) { in ov13858_init_controls()
1663 ret = ctrl_hdlr->error; in ov13858_init_controls()
1669 ov13858->sd.ctrl_handler = ctrl_hdlr; in ov13858_init_controls()
1674 v4l2_ctrl_handler_free(ctrl_hdlr); in ov13858_init_controls()