Lines Matching refs:hdl
42 struct v4l2_ctrl_handler hdl;
59 return &container_of(ctrl->handler, struct wm8739_state, hdl)->sd;
154 v4l2_ctrl_handler_log_status(&state->hdl, sd->name);
199 v4l2_ctrl_handler_init(&state->hdl, 2);
200 state->volume = v4l2_ctrl_new_std(&state->hdl, &wm8739_ctrl_ops,
202 state->mute = v4l2_ctrl_new_std(&state->hdl, &wm8739_ctrl_ops,
204 state->balance = v4l2_ctrl_new_std(&state->hdl, &wm8739_ctrl_ops,
206 sd->ctrl_handler = &state->hdl;
207 if (state->hdl.error) {
208 int err = state->hdl.error;
210 v4l2_ctrl_handler_free(&state->hdl);
233 v4l2_ctrl_handler_setup(&state->hdl);
243 v4l2_ctrl_handler_free(&state->hdl);