Lines Matching defs:bandwidth
144 struct v4l2_ctrl *bandwidth;
781 struct v4l2_ctrl *bandwidth;
790 * bandwidth (Hz)
794 bandwidth = v4l2_ctrl_find(&dev->hdl, V4L2_CID_RF_TUNER_BANDWIDTH);
797 v4l2_ctrl_s_ctrl(bandwidth, dev->f_adc);
799 c->bandwidth_hz = v4l2_ctrl_g_ctrl(bandwidth);
805 dev_dbg(&pdev->dev, "frequency=%u bandwidth=%d\n",
1263 s32 val = dev->f_adc + div_u64(dev->bandwidth->step, 2);
1266 val = clamp_t(s32, val, dev->bandwidth->minimum,
1267 dev->bandwidth->maximum);
1268 offset = val - dev->bandwidth->minimum;
1269 offset = dev->bandwidth->step *
1270 div_u64(offset, dev->bandwidth->step);
1271 dev->bandwidth->val = dev->bandwidth->minimum + offset;
1273 c->bandwidth_hz = dev->bandwidth->val;
1387 dev->bandwidth = v4l2_ctrl_new_std(&dev->hdl, ops,
1398 dev->bandwidth = v4l2_ctrl_new_std(&dev->hdl, ops,