Lines Matching refs: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()
220 v4l2_ctrl_handler_init(&state->hdl, 4); in wm8775_probe()
221 state->mute = v4l2_ctrl_new_std(&state->hdl, &wm8775_ctrl_ops, in wm8775_probe()
223 state->vol = v4l2_ctrl_new_std(&state->hdl, &wm8775_ctrl_ops, in wm8775_probe()
225 state->bal = v4l2_ctrl_new_std(&state->hdl, &wm8775_ctrl_ops, in wm8775_probe()
227 state->loud = v4l2_ctrl_new_std(&state->hdl, &wm8775_ctrl_ops, in wm8775_probe()
229 sd->ctrl_handler = &state->hdl; in wm8775_probe()
230 err = state->hdl.error; in wm8775_probe()
232 v4l2_ctrl_handler_free(&state->hdl); in wm8775_probe()
289 v4l2_ctrl_handler_free(&state->hdl); in wm8775_remove()