Lines Matching refs:hdl
32 struct v4l2_ctrl_handler hdl; member
123 struct tw9906 *dec = container_of(ctrl->handler, struct tw9906, hdl); in tw9906_s_ctrl()
177 struct v4l2_ctrl_handler *hdl; in tw9906_probe() local
191 hdl = &dec->hdl; in tw9906_probe()
192 v4l2_ctrl_handler_init(hdl, 4); in tw9906_probe()
193 v4l2_ctrl_new_std(hdl, &tw9906_ctrl_ops, in tw9906_probe()
195 v4l2_ctrl_new_std(hdl, &tw9906_ctrl_ops, in tw9906_probe()
197 v4l2_ctrl_new_std(hdl, &tw9906_ctrl_ops, in tw9906_probe()
199 sd->ctrl_handler = hdl; in tw9906_probe()
200 if (hdl->error) { in tw9906_probe()
201 int err = hdl->error; in tw9906_probe()
203 v4l2_ctrl_handler_free(hdl); in tw9906_probe()
223 v4l2_ctrl_handler_free(&to_state(sd)->hdl); in tw9906_remove()