Lines Matching defs:ctrl_hdlr
918 struct v4l2_ctrl_handler *ctrl_hdlr;
928 ctrl_hdlr = &ov08d10->ctrl_handler;
929 ret = v4l2_ctrl_handler_init(ctrl_hdlr, 8);
933 ctrl_hdlr->lock = &ov08d10->mutex;
936 v4l2_ctrl_new_int_menu(ctrl_hdlr, &ov08d10_ctrl_ops,
947 v4l2_ctrl_new_std(ctrl_hdlr, &ov08d10_ctrl_ops,
955 v4l2_ctrl_new_std(ctrl_hdlr, &ov08d10_ctrl_ops,
964 ov08d10->hblank = v4l2_ctrl_new_std(ctrl_hdlr, &ov08d10_ctrl_ops,
970 v4l2_ctrl_new_std(ctrl_hdlr, &ov08d10_ctrl_ops, V4L2_CID_ANALOGUE_GAIN,
974 v4l2_ctrl_new_std(ctrl_hdlr, &ov08d10_ctrl_ops, V4L2_CID_DIGITAL_GAIN,
979 ov08d10->exposure = v4l2_ctrl_new_std(ctrl_hdlr, &ov08d10_ctrl_ops,
986 v4l2_ctrl_new_std_menu_items(ctrl_hdlr, &ov08d10_ctrl_ops,
991 ov08d10->hflip = v4l2_ctrl_new_std(ctrl_hdlr, &ov08d10_ctrl_ops,
995 ov08d10->vflip = v4l2_ctrl_new_std(ctrl_hdlr, &ov08d10_ctrl_ops,
1000 if (ctrl_hdlr->error)
1001 return ctrl_hdlr->error;
1003 ov08d10->sd.ctrl_handler = ctrl_hdlr;