Lines Matching refs:hdl
44 struct v4l2_ctrl_handler hdl; member
403 struct msi001_dev *dev = container_of(ctrl->handler, struct msi001_dev, hdl); in msi001_s_ctrl()
462 v4l2_ctrl_handler_init(&dev->hdl, 5); in msi001_probe()
463 dev->bandwidth_auto = v4l2_ctrl_new_std(&dev->hdl, &msi001_ctrl_ops, in msi001_probe()
465 dev->bandwidth = v4l2_ctrl_new_std(&dev->hdl, &msi001_ctrl_ops, in msi001_probe()
468 dev->lna_gain = v4l2_ctrl_new_std(&dev->hdl, &msi001_ctrl_ops, in msi001_probe()
470 dev->mixer_gain = v4l2_ctrl_new_std(&dev->hdl, &msi001_ctrl_ops, in msi001_probe()
472 dev->if_gain = v4l2_ctrl_new_std(&dev->hdl, &msi001_ctrl_ops, in msi001_probe()
474 if (dev->hdl.error) { in msi001_probe()
475 ret = dev->hdl.error; in msi001_probe()
481 dev->sd.ctrl_handler = &dev->hdl; in msi001_probe()
484 v4l2_ctrl_handler_free(&dev->hdl); in msi001_probe()
502 v4l2_ctrl_handler_free(&dev->hdl); in msi001_remove()