Lines Matching refs:ctrl_hdlr
1557 struct v4l2_ctrl_handler *ctrl_hdlr; in ov13858_init_controls() local
1567 ctrl_hdlr = &ov13858->ctrl_handler; in ov13858_init_controls()
1568 ret = v4l2_ctrl_handler_init(ctrl_hdlr, 10); in ov13858_init_controls()
1573 ctrl_hdlr->lock = &ov13858->mutex; in ov13858_init_controls()
1574 ov13858->link_freq = v4l2_ctrl_new_int_menu(ctrl_hdlr, in ov13858_init_controls()
1586 ov13858->pixel_rate = v4l2_ctrl_new_std(ctrl_hdlr, &ov13858_ctrl_ops, in ov13858_init_controls()
1595 ctrl_hdlr, &ov13858_ctrl_ops, V4L2_CID_VBLANK, in ov13858_init_controls()
1602 ctrl_hdlr, &ov13858_ctrl_ops, V4L2_CID_HBLANK, in ov13858_init_controls()
1609 ctrl_hdlr, &ov13858_ctrl_ops, in ov13858_init_controls()
1614 v4l2_ctrl_new_std(ctrl_hdlr, &ov13858_ctrl_ops, V4L2_CID_ANALOGUE_GAIN, in ov13858_init_controls()
1619 v4l2_ctrl_new_std(ctrl_hdlr, &ov13858_ctrl_ops, V4L2_CID_DIGITAL_GAIN, in ov13858_init_controls()
1623 v4l2_ctrl_new_std_menu_items(ctrl_hdlr, &ov13858_ctrl_ops, in ov13858_init_controls()
1627 if (ctrl_hdlr->error) { in ov13858_init_controls()
1628 ret = ctrl_hdlr->error; in ov13858_init_controls()
1638 ret = v4l2_ctrl_new_fwnode_properties(ctrl_hdlr, &ov13858_ctrl_ops, in ov13858_init_controls()
1643 ov13858->sd.ctrl_handler = ctrl_hdlr; in ov13858_init_controls()
1648 v4l2_ctrl_handler_free(ctrl_hdlr); in ov13858_init_controls()