Lines Matching defs:bandwidth
144 struct v4l2_ctrl *bandwidth;
778 struct v4l2_ctrl *bandwidth;
787 * bandwidth (Hz)
791 bandwidth = v4l2_ctrl_find(&dev->hdl, V4L2_CID_RF_TUNER_BANDWIDTH);
794 v4l2_ctrl_s_ctrl(bandwidth, dev->f_adc);
796 c->bandwidth_hz = v4l2_ctrl_g_ctrl(bandwidth);
802 dev_dbg(&pdev->dev, "frequency=%u bandwidth=%d\n",
1264 s32 val = dev->f_adc + div_u64(dev->bandwidth->step, 2);
1267 val = clamp_t(s32, val, dev->bandwidth->minimum,
1268 dev->bandwidth->maximum);
1269 offset = val - dev->bandwidth->minimum;
1270 offset = dev->bandwidth->step *
1271 div_u64(offset, dev->bandwidth->step);
1272 dev->bandwidth->val = dev->bandwidth->minimum + offset;
1274 c->bandwidth_hz = dev->bandwidth->val;
1388 dev->bandwidth = v4l2_ctrl_new_std(&dev->hdl, ops,
1399 dev->bandwidth = v4l2_ctrl_new_std(&dev->hdl, ops,