Lines Matching refs:hdl
29 struct v4l2_ctrl_handler hdl; member
141 struct tw9903 *dec = container_of(ctrl->handler, struct tw9903, hdl); in tw9903_s_ctrl()
197 struct v4l2_ctrl_handler *hdl; in tw9903_probe() local
211 hdl = &dec->hdl; in tw9903_probe()
212 v4l2_ctrl_handler_init(hdl, 4); in tw9903_probe()
213 v4l2_ctrl_new_std(hdl, &tw9903_ctrl_ops, in tw9903_probe()
215 v4l2_ctrl_new_std(hdl, &tw9903_ctrl_ops, in tw9903_probe()
217 v4l2_ctrl_new_std(hdl, &tw9903_ctrl_ops, in tw9903_probe()
219 sd->ctrl_handler = hdl; in tw9903_probe()
220 if (hdl->error) { in tw9903_probe()
221 int err = hdl->error; in tw9903_probe()
223 v4l2_ctrl_handler_free(hdl); in tw9903_probe()
243 v4l2_ctrl_handler_free(&to_state(sd)->hdl); in tw9903_remove()