Lines Matching refs:ctrl_hdlr
1290 struct v4l2_ctrl_handler *ctrl_hdlr = &ov9282->ctrl_handler; in ov9282_init_controls() local
1297 ret = v4l2_ctrl_handler_init(ctrl_hdlr, 10); in ov9282_init_controls()
1302 ctrl_hdlr->lock = &ov9282->mutex; in ov9282_init_controls()
1306 ov9282->exp_ctrl = v4l2_ctrl_new_std(ctrl_hdlr, in ov9282_init_controls()
1314 ov9282->again_ctrl = v4l2_ctrl_new_std(ctrl_hdlr, in ov9282_init_controls()
1324 ov9282->vblank_ctrl = v4l2_ctrl_new_std(ctrl_hdlr, in ov9282_init_controls()
1331 v4l2_ctrl_new_std(ctrl_hdlr, &ov9282_ctrl_ops, V4L2_CID_VFLIP, in ov9282_init_controls()
1334 v4l2_ctrl_new_std(ctrl_hdlr, &ov9282_ctrl_ops, V4L2_CID_HFLIP, in ov9282_init_controls()
1338 ov9282->pixel_rate = v4l2_ctrl_new_std(ctrl_hdlr, &ov9282_ctrl_ops, in ov9282_init_controls()
1344 ov9282->link_freq_ctrl = v4l2_ctrl_new_int_menu(ctrl_hdlr, in ov9282_init_controls()
1355 ov9282->hblank_ctrl = v4l2_ctrl_new_std(ctrl_hdlr, in ov9282_init_controls()
1365 v4l2_ctrl_new_fwnode_properties(ctrl_hdlr, &ov9282_ctrl_ops, in ov9282_init_controls()
1369 if (ctrl_hdlr->error || ret) { in ov9282_init_controls()
1371 ctrl_hdlr->error); in ov9282_init_controls()
1372 v4l2_ctrl_handler_free(ctrl_hdlr); in ov9282_init_controls()
1373 return ctrl_hdlr->error; in ov9282_init_controls()
1376 ov9282->sd.ctrl_handler = ctrl_hdlr; in ov9282_init_controls()