summaryrefslogtreecommitdiff
path: root/linux/drivers/media/video
diff options
context:
space:
mode:
Diffstat (limited to 'linux/drivers/media/video')
-rw-r--r--linux/drivers/media/video/tuner-xc2028.c8
-rw-r--r--linux/drivers/media/video/tuner-xc2028.h5
2 files changed, 11 insertions, 2 deletions
diff --git a/linux/drivers/media/video/tuner-xc2028.c b/linux/drivers/media/video/tuner-xc2028.c
index 9cdce0913..c17950e36 100644
--- a/linux/drivers/media/video/tuner-xc2028.c
+++ b/linux/drivers/media/video/tuner-xc2028.c
@@ -906,6 +906,14 @@ static int xc2028_set_analog_freq(struct dvb_frontend *fe,
tuner_dbg("%s called\n", __FUNCTION__);
+ if (p->mode == V4L2_TUNER_RADIO) {
+ type |= FM;
+ if (priv->ctrl.input1)
+ type |= INPUT1;
+ return generic_set_freq(fe, (625l * p->frequency) / 10,
+ T_ANALOG_TV, type, 0);
+ }
+
/* if std is not defined, choose one */
if (!p->std)
p->std = V4L2_STD_MN;
diff --git a/linux/drivers/media/video/tuner-xc2028.h b/linux/drivers/media/video/tuner-xc2028.h
index a59d00fb2..02e116b54 100644
--- a/linux/drivers/media/video/tuner-xc2028.h
+++ b/linux/drivers/media/video/tuner-xc2028.h
@@ -15,8 +15,9 @@ struct xc2028_ctrl {
char *fname;
int max_len;
unsigned int scode_table;
- unsigned int mts :1;
- unsigned int d2633:1;
+ unsigned int mts :1;
+ unsigned int d2633 :1;
+ unsigned int input1:1;
};
struct xc2028_config {