Lines Matching refs:hdl
395 struct e4000 *s = container_of(ctrl->handler, struct e4000, hdl); in e4000_g_volatile_ctrl()
416 struct e4000 *s = container_of(ctrl->handler, struct e4000, hdl); in e4000_s_ctrl()
524 v4l2_ctrl_handler_init(&s->hdl, 9); in e4000_probe()
525 s->bandwidth_auto = v4l2_ctrl_new_std(&s->hdl, &e4000_ctrl_ops, in e4000_probe()
527 s->bandwidth = v4l2_ctrl_new_std(&s->hdl, &e4000_ctrl_ops, in e4000_probe()
530 s->lna_gain_auto = v4l2_ctrl_new_std(&s->hdl, &e4000_ctrl_ops, in e4000_probe()
532 s->lna_gain = v4l2_ctrl_new_std(&s->hdl, &e4000_ctrl_ops, in e4000_probe()
535 s->mixer_gain_auto = v4l2_ctrl_new_std(&s->hdl, &e4000_ctrl_ops, in e4000_probe()
537 s->mixer_gain = v4l2_ctrl_new_std(&s->hdl, &e4000_ctrl_ops, in e4000_probe()
540 s->if_gain_auto = v4l2_ctrl_new_std(&s->hdl, &e4000_ctrl_ops, in e4000_probe()
542 s->if_gain = v4l2_ctrl_new_std(&s->hdl, &e4000_ctrl_ops, in e4000_probe()
545 s->pll_lock = v4l2_ctrl_new_std(&s->hdl, &e4000_ctrl_ops, in e4000_probe()
547 if (s->hdl.error) { in e4000_probe()
548 ret = s->hdl.error; in e4000_probe()
550 v4l2_ctrl_handler_free(&s->hdl); in e4000_probe()
554 s->sd.ctrl_handler = &s->hdl; in e4000_probe()
585 v4l2_ctrl_handler_free(&s->hdl); in e4000_remove()