Lines Matching refs:v
80 static int tef6862_g_tuner(struct v4l2_subdev *sd, struct v4l2_tuner *v) in tef6862_g_tuner() argument
82 if (v->index > 0) in tef6862_g_tuner()
86 strlcpy(v->name, "FM", sizeof(v->name)); in tef6862_g_tuner()
87 v->type = V4L2_TUNER_RADIO; in tef6862_g_tuner()
88 v->rangelow = TEF6862_LO_FREQ; in tef6862_g_tuner()
89 v->rangehigh = TEF6862_HI_FREQ; in tef6862_g_tuner()
90 v->rxsubchans = V4L2_TUNER_SUB_MONO; in tef6862_g_tuner()
91 v->capability = V4L2_TUNER_CAP_LOW; in tef6862_g_tuner()
92 v->audmode = V4L2_TUNER_MODE_STEREO; in tef6862_g_tuner()
93 v->signal = tef6862_sigstr(v4l2_get_subdevdata(sd)); in tef6862_g_tuner()
98 static int tef6862_s_tuner(struct v4l2_subdev *sd, const struct v4l2_tuner *v) in tef6862_s_tuner() argument
100 return v->index ? -EINVAL : 0; in tef6862_s_tuner()