Lines Matching refs:hdl
83 struct v4l2_ctrl_handler hdl; member
118 return &container_of(ctrl->handler, struct ad9389b_state, hdl)->sd; in to_sd()
899 v4l2_ctrl_handler_setup(&state->hdl); in ad9389b_setup()
1104 struct v4l2_ctrl_handler *hdl; in ad9389b_probe() local
1130 hdl = &state->hdl; in ad9389b_probe()
1131 v4l2_ctrl_handler_init(hdl, 5); in ad9389b_probe()
1135 state->hdmi_mode_ctrl = v4l2_ctrl_new_std_menu(hdl, &ad9389b_ctrl_ops, in ad9389b_probe()
1138 state->hotplug_ctrl = v4l2_ctrl_new_std(hdl, NULL, in ad9389b_probe()
1140 state->rx_sense_ctrl = v4l2_ctrl_new_std(hdl, NULL, in ad9389b_probe()
1142 state->have_edid0_ctrl = v4l2_ctrl_new_std(hdl, NULL, in ad9389b_probe()
1145 v4l2_ctrl_new_std_menu(hdl, &ad9389b_ctrl_ops, in ad9389b_probe()
1148 sd->ctrl_handler = hdl; in ad9389b_probe()
1149 if (hdl->error) { in ad9389b_probe()
1150 err = hdl->error; in ad9389b_probe()
1203 v4l2_ctrl_handler_free(&state->hdl); in ad9389b_probe()