Lines Matching refs:hdl
29 struct v4l2_ctrl_handler hdl; member
479 return &container_of(ctrl->handler, struct vs6624, hdl)->sd; in to_sd()
746 struct v4l2_ctrl_handler *hdl; in vs6624_probe() local
801 hdl = &sensor->hdl; in vs6624_probe()
802 v4l2_ctrl_handler_init(hdl, 4); in vs6624_probe()
803 v4l2_ctrl_new_std(hdl, &vs6624_ctrl_ops, in vs6624_probe()
805 v4l2_ctrl_new_std(hdl, &vs6624_ctrl_ops, in vs6624_probe()
807 v4l2_ctrl_new_std(hdl, &vs6624_ctrl_ops, in vs6624_probe()
809 v4l2_ctrl_new_std(hdl, &vs6624_ctrl_ops, in vs6624_probe()
812 sd->ctrl_handler = hdl; in vs6624_probe()
813 if (hdl->error) { in vs6624_probe()
814 int err = hdl->error; in vs6624_probe()
816 v4l2_ctrl_handler_free(hdl); in vs6624_probe()
821 ret = v4l2_ctrl_handler_setup(hdl); in vs6624_probe()
823 v4l2_ctrl_handler_free(hdl); in vs6624_probe()