Lines Matching +full:875 +full:v
21 #define TEF6862_LO_FREQ (875U * FREQ_MUL / 10)
68 static int tef6862_g_tuner(struct v4l2_subdev *sd, struct v4l2_tuner *v) in tef6862_g_tuner() argument
70 if (v->index > 0) in tef6862_g_tuner()
74 strscpy(v->name, "FM", sizeof(v->name)); in tef6862_g_tuner()
75 v->type = V4L2_TUNER_RADIO; in tef6862_g_tuner()
76 v->rangelow = TEF6862_LO_FREQ; in tef6862_g_tuner()
77 v->rangehigh = TEF6862_HI_FREQ; in tef6862_g_tuner()
78 v->rxsubchans = V4L2_TUNER_SUB_MONO; in tef6862_g_tuner()
79 v->capability = V4L2_TUNER_CAP_LOW; in tef6862_g_tuner()
80 v->audmode = V4L2_TUNER_MODE_STEREO; in tef6862_g_tuner()
81 v->signal = tef6862_sigstr(v4l2_get_subdevdata(sd)); in tef6862_g_tuner()
86 static int tef6862_s_tuner(struct v4l2_subdev *sd, const struct v4l2_tuner *v) in tef6862_s_tuner() argument
88 return v->index ? -EINVAL : 0; in tef6862_s_tuner()