Lines Matching refs:hdl
71 struct v4l2_ctrl_handler hdl; member
119 static bool adv7842_check_dv_timings(const struct v4l2_dv_timings *t, void *hdl) in adv7842_check_dv_timings() argument
221 return &container_of(ctrl->handler, struct adv7842_state, hdl)->sd; in to_sd()
2963 struct v4l2_ctrl_handler *hdl; in adv7842_probe() local
3016 hdl = &state->hdl; in adv7842_probe()
3017 v4l2_ctrl_handler_init(hdl, 6); in adv7842_probe()
3020 v4l2_ctrl_new_std(hdl, &adv7842_ctrl_ops, in adv7842_probe()
3022 v4l2_ctrl_new_std(hdl, &adv7842_ctrl_ops, in adv7842_probe()
3024 v4l2_ctrl_new_std(hdl, &adv7842_ctrl_ops, in adv7842_probe()
3026 v4l2_ctrl_new_std(hdl, &adv7842_ctrl_ops, in adv7842_probe()
3030 state->detect_tx_5v_ctrl = v4l2_ctrl_new_std(hdl, NULL, in adv7842_probe()
3032 state->analog_sampling_phase_ctrl = v4l2_ctrl_new_custom(hdl, in adv7842_probe()
3034 state->free_run_color_ctrl_manual = v4l2_ctrl_new_custom(hdl, in adv7842_probe()
3036 state->free_run_color_ctrl = v4l2_ctrl_new_custom(hdl, in adv7842_probe()
3039 v4l2_ctrl_new_std_menu(hdl, &adv7842_ctrl_ops, in adv7842_probe()
3042 sd->ctrl_handler = hdl; in adv7842_probe()
3043 if (hdl->error) { in adv7842_probe()
3044 err = hdl->error; in adv7842_probe()
3096 v4l2_ctrl_handler_free(hdl); in adv7842_probe()