Lines Matching full:hdl
29 struct v4l2_ctrl_handler hdl; member
141 struct tw9903 *dec = container_of(ctrl->handler, struct tw9903, hdl); in tw9903_s_ctrl()
196 struct v4l2_ctrl_handler *hdl; in tw9903_probe() local
210 hdl = &dec->hdl; in tw9903_probe()
211 v4l2_ctrl_handler_init(hdl, 4); in tw9903_probe()
212 v4l2_ctrl_new_std(hdl, &tw9903_ctrl_ops, in tw9903_probe()
214 v4l2_ctrl_new_std(hdl, &tw9903_ctrl_ops, in tw9903_probe()
216 v4l2_ctrl_new_std(hdl, &tw9903_ctrl_ops, in tw9903_probe()
218 sd->ctrl_handler = hdl; in tw9903_probe()
219 if (hdl->error) { in tw9903_probe()
220 int err = hdl->error; in tw9903_probe()
222 v4l2_ctrl_handler_free(hdl); in tw9903_probe()
242 v4l2_ctrl_handler_free(&to_state(sd)->hdl); in tw9903_remove()