Lines Matching refs:ctrl_hdlr
2062 struct v4l2_ctrl_handler *ctrl_hdlr; in ov5670_init_controls() local
2069 ctrl_hdlr = &ov5670->ctrl_handler; in ov5670_init_controls()
2070 ret = v4l2_ctrl_handler_init(ctrl_hdlr, 8); in ov5670_init_controls()
2074 ctrl_hdlr->lock = &ov5670->mutex; in ov5670_init_controls()
2075 ov5670->link_freq = v4l2_ctrl_new_int_menu(ctrl_hdlr, in ov5670_init_controls()
2083 ov5670->pixel_rate = v4l2_ctrl_new_std(ctrl_hdlr, &ov5670_ctrl_ops, in ov5670_init_controls()
2092 ov5670->vblank = v4l2_ctrl_new_std(ctrl_hdlr, &ov5670_ctrl_ops, in ov5670_init_controls()
2097 ctrl_hdlr, &ov5670_ctrl_ops, V4L2_CID_HBLANK, in ov5670_init_controls()
2105 v4l2_ctrl_new_std(ctrl_hdlr, &ov5670_ctrl_ops, V4L2_CID_ANALOGUE_GAIN, in ov5670_init_controls()
2110 v4l2_ctrl_new_std(ctrl_hdlr, &ov5670_ctrl_ops, V4L2_CID_DIGITAL_GAIN, in ov5670_init_controls()
2116 ov5670->exposure = v4l2_ctrl_new_std(ctrl_hdlr, &ov5670_ctrl_ops, in ov5670_init_controls()
2122 v4l2_ctrl_new_std_menu_items(ctrl_hdlr, &ov5670_ctrl_ops, in ov5670_init_controls()
2127 if (ctrl_hdlr->error) { in ov5670_init_controls()
2128 ret = ctrl_hdlr->error; in ov5670_init_controls()
2132 ov5670->sd.ctrl_handler = ctrl_hdlr; in ov5670_init_controls()
2137 v4l2_ctrl_handler_free(ctrl_hdlr); in ov5670_init_controls()