Lines Matching defs:ctrl_hdlr
2267 struct v4l2_ctrl_handler *ctrl_hdlr;
2277 ctrl_hdlr = &imx319->ctrl_handler;
2278 ret = v4l2_ctrl_handler_init(ctrl_hdlr, 10);
2282 ctrl_hdlr->lock = &imx319->mutex;
2284 imx319->link_freq = v4l2_ctrl_new_int_menu(ctrl_hdlr, &imx319_ctrl_ops,
2294 imx319->pixel_rate = v4l2_ctrl_new_std(ctrl_hdlr, &imx319_ctrl_ops,
2302 imx319->vblank = v4l2_ctrl_new_std(ctrl_hdlr, &imx319_ctrl_ops,
2308 imx319->hblank = v4l2_ctrl_new_std(ctrl_hdlr, &imx319_ctrl_ops,
2316 imx319->exposure = v4l2_ctrl_new_std(ctrl_hdlr, &imx319_ctrl_ops,
2322 imx319->hflip = v4l2_ctrl_new_std(ctrl_hdlr, &imx319_ctrl_ops,
2324 imx319->vflip = v4l2_ctrl_new_std(ctrl_hdlr, &imx319_ctrl_ops,
2327 v4l2_ctrl_new_std(ctrl_hdlr, &imx319_ctrl_ops, V4L2_CID_ANALOGUE_GAIN,
2332 v4l2_ctrl_new_std(ctrl_hdlr, &imx319_ctrl_ops, V4L2_CID_DIGITAL_GAIN,
2336 v4l2_ctrl_new_std_menu_items(ctrl_hdlr, &imx319_ctrl_ops,
2340 if (ctrl_hdlr->error) {
2341 ret = ctrl_hdlr->error;
2346 imx319->sd.ctrl_handler = ctrl_hdlr;
2351 v4l2_ctrl_handler_free(ctrl_hdlr);