Lines Matching refs:hdl
41 struct v4l2_ctrl_handler hdl; member
491 return &container_of(ctrl->handler, struct vs6624, hdl)->sd; in to_sd()
767 struct v4l2_ctrl_handler *hdl; in vs6624_probe() local
822 hdl = &sensor->hdl; in vs6624_probe()
823 v4l2_ctrl_handler_init(hdl, 4); in vs6624_probe()
824 v4l2_ctrl_new_std(hdl, &vs6624_ctrl_ops, in vs6624_probe()
826 v4l2_ctrl_new_std(hdl, &vs6624_ctrl_ops, in vs6624_probe()
828 v4l2_ctrl_new_std(hdl, &vs6624_ctrl_ops, in vs6624_probe()
830 v4l2_ctrl_new_std(hdl, &vs6624_ctrl_ops, in vs6624_probe()
833 sd->ctrl_handler = hdl; in vs6624_probe()
834 if (hdl->error) { in vs6624_probe()
835 int err = hdl->error; in vs6624_probe()
837 v4l2_ctrl_handler_free(hdl); in vs6624_probe()
842 ret = v4l2_ctrl_handler_setup(hdl); in vs6624_probe()
844 v4l2_ctrl_handler_free(hdl); in vs6624_probe()