Lines Matching full:hdl
45 struct v4l2_ctrl_handler hdl; member
60 return &container_of(ctrl->handler, struct wm8775_state, hdl)->sd; in to_sd()
150 v4l2_ctrl_handler_log_status(&state->hdl, sd->name); in wm8775_log_status()
219 v4l2_ctrl_handler_init(&state->hdl, 4); in wm8775_probe()
220 state->mute = v4l2_ctrl_new_std(&state->hdl, &wm8775_ctrl_ops, in wm8775_probe()
222 state->vol = v4l2_ctrl_new_std(&state->hdl, &wm8775_ctrl_ops, in wm8775_probe()
224 state->bal = v4l2_ctrl_new_std(&state->hdl, &wm8775_ctrl_ops, in wm8775_probe()
226 state->loud = v4l2_ctrl_new_std(&state->hdl, &wm8775_ctrl_ops, in wm8775_probe()
228 sd->ctrl_handler = &state->hdl; in wm8775_probe()
229 err = state->hdl.error; in wm8775_probe()
231 v4l2_ctrl_handler_free(&state->hdl); in wm8775_probe()
288 v4l2_ctrl_handler_free(&state->hdl); in wm8775_remove()