Lines Matching refs:hdl
44 struct v4l2_ctrl_handler hdl; member
384 struct msi001 *s = container_of(ctrl->handler, struct msi001, hdl); in msi001_s_ctrl()
441 v4l2_ctrl_handler_init(&s->hdl, 5); in msi001_probe()
442 s->bandwidth_auto = v4l2_ctrl_new_std(&s->hdl, &msi001_ctrl_ops, in msi001_probe()
444 s->bandwidth = v4l2_ctrl_new_std(&s->hdl, &msi001_ctrl_ops, in msi001_probe()
447 s->lna_gain = v4l2_ctrl_new_std(&s->hdl, &msi001_ctrl_ops, in msi001_probe()
449 s->mixer_gain = v4l2_ctrl_new_std(&s->hdl, &msi001_ctrl_ops, in msi001_probe()
451 s->if_gain = v4l2_ctrl_new_std(&s->hdl, &msi001_ctrl_ops, in msi001_probe()
453 if (s->hdl.error) { in msi001_probe()
454 ret = s->hdl.error; in msi001_probe()
460 s->sd.ctrl_handler = &s->hdl; in msi001_probe()
464 v4l2_ctrl_handler_free(&s->hdl); in msi001_probe()
482 v4l2_ctrl_handler_free(&s->hdl); in msi001_remove()