Lines Matching refs:ctrl_hdlr
1065 struct v4l2_ctrl_handler *ctrl_hdlr;
1071 ctrl_hdlr = &imx219->ctrl_handler;
1072 ret = v4l2_ctrl_handler_init(ctrl_hdlr, 12);
1077 imx219->pixel_rate = v4l2_ctrl_new_std(ctrl_hdlr, &imx219_ctrl_ops,
1084 v4l2_ctrl_new_int_menu(ctrl_hdlr, &imx219_ctrl_ops,
1093 imx219->vblank = v4l2_ctrl_new_std(ctrl_hdlr, &imx219_ctrl_ops,
1098 imx219->hblank = v4l2_ctrl_new_std(ctrl_hdlr, &imx219_ctrl_ops,
1106 imx219->exposure = v4l2_ctrl_new_std(ctrl_hdlr, &imx219_ctrl_ops,
1112 v4l2_ctrl_new_std(ctrl_hdlr, &imx219_ctrl_ops, V4L2_CID_ANALOGUE_GAIN,
1116 v4l2_ctrl_new_std(ctrl_hdlr, &imx219_ctrl_ops, V4L2_CID_DIGITAL_GAIN,
1120 imx219->hflip = v4l2_ctrl_new_std(ctrl_hdlr, &imx219_ctrl_ops,
1125 imx219->vflip = v4l2_ctrl_new_std(ctrl_hdlr, &imx219_ctrl_ops,
1130 v4l2_ctrl_new_std_menu_items(ctrl_hdlr, &imx219_ctrl_ops,
1141 v4l2_ctrl_new_std(ctrl_hdlr, &imx219_ctrl_ops,
1150 if (ctrl_hdlr->error) {
1151 ret = ctrl_hdlr->error;
1161 ret = v4l2_ctrl_new_fwnode_properties(ctrl_hdlr, &imx219_ctrl_ops,
1166 imx219->sd.ctrl_handler = ctrl_hdlr;
1171 v4l2_ctrl_handler_free(ctrl_hdlr);