Lines Matching refs:hdl
55 struct v4l2_ctrl_handler hdl; member
72 return &container_of(ctrl->handler, struct wm8739_state, hdl)->sd; in to_sd()
167 v4l2_ctrl_handler_log_status(&state->hdl, sd->name); in wm8739_log_status()
212 v4l2_ctrl_handler_init(&state->hdl, 2); in wm8739_probe()
213 state->volume = v4l2_ctrl_new_std(&state->hdl, &wm8739_ctrl_ops, in wm8739_probe()
215 state->mute = v4l2_ctrl_new_std(&state->hdl, &wm8739_ctrl_ops, in wm8739_probe()
217 state->balance = v4l2_ctrl_new_std(&state->hdl, &wm8739_ctrl_ops, in wm8739_probe()
219 sd->ctrl_handler = &state->hdl; in wm8739_probe()
220 if (state->hdl.error) { in wm8739_probe()
221 int err = state->hdl.error; in wm8739_probe()
223 v4l2_ctrl_handler_free(&state->hdl); in wm8739_probe()
246 v4l2_ctrl_handler_setup(&state->hdl); in wm8739_probe()
256 v4l2_ctrl_handler_free(&state->hdl); in wm8739_remove()