Lines Matching refs:hdl
41 struct v4l2_ctrl_handler hdl; member
153 struct tw9903 *dec = container_of(ctrl->handler, struct tw9903, hdl); in tw9903_s_ctrl()
209 struct v4l2_ctrl_handler *hdl; in tw9903_probe() local
223 hdl = &dec->hdl; in tw9903_probe()
224 v4l2_ctrl_handler_init(hdl, 4); in tw9903_probe()
225 v4l2_ctrl_new_std(hdl, &tw9903_ctrl_ops, in tw9903_probe()
227 v4l2_ctrl_new_std(hdl, &tw9903_ctrl_ops, in tw9903_probe()
229 v4l2_ctrl_new_std(hdl, &tw9903_ctrl_ops, in tw9903_probe()
231 sd->ctrl_handler = hdl; in tw9903_probe()
232 if (hdl->error) { in tw9903_probe()
233 int err = hdl->error; in tw9903_probe()
235 v4l2_ctrl_handler_free(hdl); in tw9903_probe()
255 v4l2_ctrl_handler_free(&to_state(sd)->hdl); in tw9903_remove()