Lines Matching refs:hdl
41 struct v4l2_ctrl_handler hdl; member
491 return &container_of(ctrl->handler, struct vs6624, hdl)->sd; in to_sd()
760 struct v4l2_ctrl_handler *hdl; in vs6624_probe() local
815 hdl = &sensor->hdl; in vs6624_probe()
816 v4l2_ctrl_handler_init(hdl, 4); in vs6624_probe()
817 v4l2_ctrl_new_std(hdl, &vs6624_ctrl_ops, in vs6624_probe()
819 v4l2_ctrl_new_std(hdl, &vs6624_ctrl_ops, in vs6624_probe()
821 v4l2_ctrl_new_std(hdl, &vs6624_ctrl_ops, in vs6624_probe()
823 v4l2_ctrl_new_std(hdl, &vs6624_ctrl_ops, in vs6624_probe()
826 sd->ctrl_handler = hdl; in vs6624_probe()
827 if (hdl->error) { in vs6624_probe()
828 int err = hdl->error; in vs6624_probe()
830 v4l2_ctrl_handler_free(hdl); in vs6624_probe()
835 ret = v4l2_ctrl_handler_setup(hdl); in vs6624_probe()
837 v4l2_ctrl_handler_free(hdl); in vs6624_probe()