Lines Matching defs:ctrl_hdlr
2274 struct v4l2_ctrl_handler *ctrl_hdlr;
2284 ctrl_hdlr = &imx319->ctrl_handler;
2285 ret = v4l2_ctrl_handler_init(ctrl_hdlr, 10);
2289 ctrl_hdlr->lock = &imx319->mutex;
2291 imx319->link_freq = v4l2_ctrl_new_int_menu(ctrl_hdlr, &imx319_ctrl_ops,
2301 imx319->pixel_rate = v4l2_ctrl_new_std(ctrl_hdlr, &imx319_ctrl_ops,
2309 imx319->vblank = v4l2_ctrl_new_std(ctrl_hdlr, &imx319_ctrl_ops,
2315 imx319->hblank = v4l2_ctrl_new_std(ctrl_hdlr, &imx319_ctrl_ops,
2323 imx319->exposure = v4l2_ctrl_new_std(ctrl_hdlr, &imx319_ctrl_ops,
2329 imx319->hflip = v4l2_ctrl_new_std(ctrl_hdlr, &imx319_ctrl_ops,
2333 imx319->vflip = v4l2_ctrl_new_std(ctrl_hdlr, &imx319_ctrl_ops,
2338 v4l2_ctrl_new_std(ctrl_hdlr, &imx319_ctrl_ops, V4L2_CID_ANALOGUE_GAIN,
2343 v4l2_ctrl_new_std(ctrl_hdlr, &imx319_ctrl_ops, V4L2_CID_DIGITAL_GAIN,
2347 v4l2_ctrl_new_std_menu_items(ctrl_hdlr, &imx319_ctrl_ops,
2351 if (ctrl_hdlr->error) {
2352 ret = ctrl_hdlr->error;
2357 imx319->sd.ctrl_handler = ctrl_hdlr;
2362 v4l2_ctrl_handler_free(ctrl_hdlr);