Lines Matching defs:handler
1533 struct ov8858 *ov8858 = container_of(ctrl->handler,
1544 * The control handler and the subdev state use the same mutex and the
1702 struct v4l2_ctrl_handler *handler = &ov8858->ctrl_handler;
1711 ret = v4l2_ctrl_handler_init(handler, 10);
1715 ctrl = v4l2_ctrl_new_int_menu(handler, NULL, V4L2_CID_LINK_FREQ,
1722 v4l2_ctrl_new_std(handler, NULL, V4L2_CID_PIXEL_RATE,
1726 ov8858->hblank = v4l2_ctrl_new_std(handler, NULL, V4L2_CID_HBLANK,
1732 ov8858->vblank = v4l2_ctrl_new_std(handler, &ov8858_ctrl_ops,
1738 ov8858->exposure = v4l2_ctrl_new_std(handler, &ov8858_ctrl_ops,
1744 v4l2_ctrl_new_std(handler, &ov8858_ctrl_ops, V4L2_CID_ANALOGUE_GAIN,
1748 v4l2_ctrl_new_std(handler, &ov8858_ctrl_ops, V4L2_CID_DIGITAL_GAIN,
1753 v4l2_ctrl_new_std_menu_items(handler, &ov8858_ctrl_ops,
1758 if (handler->error) {
1759 ret = handler->error;
1767 ret = v4l2_ctrl_new_fwnode_properties(handler, &ov8858_ctrl_ops,
1772 ov8858->subdev.ctrl_handler = handler;
1778 v4l2_ctrl_handler_free(handler);