Lines Matching defs:ctrl_hdlr
1220 struct v4l2_ctrl_handler *ctrl_hdlr;
1224 ctrl_hdlr = &ov8856->ctrl_handler;
1225 ret = v4l2_ctrl_handler_init(ctrl_hdlr, 8);
1229 ctrl_hdlr->lock = &ov8856->mutex;
1230 ov8856->link_freq = v4l2_ctrl_new_int_menu(ctrl_hdlr, &ov8856_ctrl_ops,
1237 ov8856->pixel_rate = v4l2_ctrl_new_std(ctrl_hdlr, &ov8856_ctrl_ops,
1242 ov8856->vblank = v4l2_ctrl_new_std(ctrl_hdlr, &ov8856_ctrl_ops,
1249 ov8856->hblank = v4l2_ctrl_new_std(ctrl_hdlr, &ov8856_ctrl_ops,
1255 v4l2_ctrl_new_std(ctrl_hdlr, &ov8856_ctrl_ops, V4L2_CID_ANALOGUE_GAIN,
1258 v4l2_ctrl_new_std(ctrl_hdlr, &ov8856_ctrl_ops, V4L2_CID_DIGITAL_GAIN,
1262 ov8856->exposure = v4l2_ctrl_new_std(ctrl_hdlr, &ov8856_ctrl_ops,
1267 v4l2_ctrl_new_std_menu_items(ctrl_hdlr, &ov8856_ctrl_ops,
1271 if (ctrl_hdlr->error)
1272 return ctrl_hdlr->error;
1274 ov8856->sd.ctrl_handler = ctrl_hdlr;