Lines Matching refs:hdl
64 struct v4l2_ctrl_handler hdl; member
84 return &container_of(ctrl->handler, struct tda7432, hdl)->sd; in to_sd()
267 v4l2_ctrl_handler_log_status(&state->hdl, sd->name); in tda7432_log_status()
360 v4l2_ctrl_handler_init(&t->hdl, 5); in tda7432_probe()
361 v4l2_ctrl_new_std(&t->hdl, &tda7432_ctrl_ops, in tda7432_probe()
363 t->mute = v4l2_ctrl_new_std(&t->hdl, &tda7432_ctrl_ops, in tda7432_probe()
365 t->balance = v4l2_ctrl_new_std(&t->hdl, &tda7432_ctrl_ops, in tda7432_probe()
367 t->bass = v4l2_ctrl_new_std(&t->hdl, &tda7432_ctrl_ops, in tda7432_probe()
369 t->treble = v4l2_ctrl_new_std(&t->hdl, &tda7432_ctrl_ops, in tda7432_probe()
371 sd->ctrl_handler = &t->hdl; in tda7432_probe()
372 if (t->hdl.error) { in tda7432_probe()
373 int err = t->hdl.error; in tda7432_probe()
375 v4l2_ctrl_handler_free(&t->hdl); in tda7432_probe()
380 v4l2_ctrl_handler_setup(&t->hdl); in tda7432_probe()
400 v4l2_ctrl_handler_free(&t->hdl); in tda7432_remove()