Lines Matching refs:vt
163 struct v4l2_tuner *vt) in tlg_fm_vidioc_g_tuner() argument
169 if (vt->index != 0) in tlg_fm_vidioc_g_tuner()
172 vt->type = V4L2_TUNER_RADIO; in tlg_fm_vidioc_g_tuner()
173 vt->capability = V4L2_TUNER_CAP_STEREO; in tlg_fm_vidioc_g_tuner()
174 vt->rangelow = TUNER_FREQ_MIN_FM / 62500; in tlg_fm_vidioc_g_tuner()
175 vt->rangehigh = TUNER_FREQ_MAX_FM / 62500; in tlg_fm_vidioc_g_tuner()
176 vt->rxsubchans = V4L2_TUNER_SUB_STEREO; in tlg_fm_vidioc_g_tuner()
177 vt->audmode = V4L2_TUNER_MODE_STEREO; in tlg_fm_vidioc_g_tuner()
178 vt->signal = 0; in tlg_fm_vidioc_g_tuner()
179 vt->afc = 0; in tlg_fm_vidioc_g_tuner()
195 vt->signal = 0; in tlg_fm_vidioc_g_tuner()
198 vt->signal = 0xffff; in tlg_fm_vidioc_g_tuner()
200 vt->signal = (fm_stat.sig_strength * 255 / 10) << 8; in tlg_fm_vidioc_g_tuner()
347 static int vidioc_s_tuner(struct file *file, void *priv, struct v4l2_tuner *vt) in vidioc_s_tuner() argument
349 return vt->index > 0 ? -EINVAL : 0; in vidioc_s_tuner()