Lines Matching refs:vt
411 int vivid_sdr_g_tuner(struct file *file, void *fh, struct v4l2_tuner *vt)
413 switch (vt->index) {
415 strscpy(vt->name, "ADC", sizeof(vt->name));
416 vt->type = V4L2_TUNER_ADC;
417 vt->capability =
419 vt->rangelow = bands_adc[0].rangelow;
420 vt->rangehigh = bands_adc[2].rangehigh;
423 strscpy(vt->name, "RF", sizeof(vt->name));
424 vt->type = V4L2_TUNER_RF;
425 vt->capability =
427 vt->rangelow = bands_fm[0].rangelow;
428 vt->rangehigh = bands_fm[0].rangehigh;
435 int vivid_sdr_s_tuner(struct file *file, void *fh, const struct v4l2_tuner *vt)
437 if (vt->index > 1)