Lines Matching refs:vt
418 int vivid_sdr_g_tuner(struct file *file, void *fh, struct v4l2_tuner *vt)
420 switch (vt->index) {
422 strscpy(vt->name, "ADC", sizeof(vt->name));
423 vt->type = V4L2_TUNER_ADC;
424 vt->capability =
426 vt->rangelow = bands_adc[0].rangelow;
427 vt->rangehigh = bands_adc[2].rangehigh;
430 strscpy(vt->name, "RF", sizeof(vt->name));
431 vt->type = V4L2_TUNER_RF;
432 vt->capability =
434 vt->rangelow = bands_fm[0].rangelow;
435 vt->rangehigh = bands_fm[0].rangehigh;
442 int vivid_sdr_s_tuner(struct file *file, void *fh, const struct v4l2_tuner *vt)
444 if (vt->index > 1)