Lines Matching defs:ctrl_hdlr
1567 struct v4l2_ctrl_handler *ctrl_hdlr;
1577 ctrl_hdlr = &imx355->ctrl_handler;
1578 ret = v4l2_ctrl_handler_init(ctrl_hdlr, 10);
1582 ctrl_hdlr->lock = &imx355->mutex;
1584 imx355->link_freq = v4l2_ctrl_new_int_menu(ctrl_hdlr, &imx355_ctrl_ops,
1594 imx355->pixel_rate = v4l2_ctrl_new_std(ctrl_hdlr, &imx355_ctrl_ops,
1602 imx355->vblank = v4l2_ctrl_new_std(ctrl_hdlr, &imx355_ctrl_ops,
1608 imx355->hblank = v4l2_ctrl_new_std(ctrl_hdlr, &imx355_ctrl_ops,
1616 imx355->exposure = v4l2_ctrl_new_std(ctrl_hdlr, &imx355_ctrl_ops,
1622 imx355->hflip = v4l2_ctrl_new_std(ctrl_hdlr, &imx355_ctrl_ops,
1624 imx355->vflip = v4l2_ctrl_new_std(ctrl_hdlr, &imx355_ctrl_ops,
1627 v4l2_ctrl_new_std(ctrl_hdlr, &imx355_ctrl_ops, V4L2_CID_ANALOGUE_GAIN,
1632 v4l2_ctrl_new_std(ctrl_hdlr, &imx355_ctrl_ops, V4L2_CID_DIGITAL_GAIN,
1636 v4l2_ctrl_new_std_menu_items(ctrl_hdlr, &imx355_ctrl_ops,
1640 if (ctrl_hdlr->error) {
1641 ret = ctrl_hdlr->error;
1646 imx355->sd.ctrl_handler = ctrl_hdlr;
1651 v4l2_ctrl_handler_free(ctrl_hdlr);