Lines Matching refs:ctrl_hdlr
1225 struct v4l2_ctrl_handler *ctrl_hdlr;
1231 ctrl_hdlr = &imx219->ctrl_handler;
1232 ret = v4l2_ctrl_handler_init(ctrl_hdlr, 11);
1237 ctrl_hdlr->lock = &imx219->mutex;
1240 imx219->pixel_rate = v4l2_ctrl_new_std(ctrl_hdlr, &imx219_ctrl_ops,
1247 imx219->vblank = v4l2_ctrl_new_std(ctrl_hdlr, &imx219_ctrl_ops,
1252 imx219->hblank = v4l2_ctrl_new_std(ctrl_hdlr, &imx219_ctrl_ops,
1260 imx219->exposure = v4l2_ctrl_new_std(ctrl_hdlr, &imx219_ctrl_ops,
1266 v4l2_ctrl_new_std(ctrl_hdlr, &imx219_ctrl_ops, V4L2_CID_ANALOGUE_GAIN,
1270 v4l2_ctrl_new_std(ctrl_hdlr, &imx219_ctrl_ops, V4L2_CID_DIGITAL_GAIN,
1274 imx219->hflip = v4l2_ctrl_new_std(ctrl_hdlr, &imx219_ctrl_ops,
1279 imx219->vflip = v4l2_ctrl_new_std(ctrl_hdlr, &imx219_ctrl_ops,
1284 v4l2_ctrl_new_std_menu_items(ctrl_hdlr, &imx219_ctrl_ops,
1295 v4l2_ctrl_new_std(ctrl_hdlr, &imx219_ctrl_ops,
1304 if (ctrl_hdlr->error) {
1305 ret = ctrl_hdlr->error;
1315 ret = v4l2_ctrl_new_fwnode_properties(ctrl_hdlr, &imx219_ctrl_ops,
1320 imx219->sd.ctrl_handler = ctrl_hdlr;
1325 v4l2_ctrl_handler_free(ctrl_hdlr);