dect
/
linux-2.6
Archived
13
0
Fork 0

V4L/DVB (13934): tda8290: Fix FM radio easy programming standard selection for TDA8295

Signed-off-by: Michael Krufky <mkrufky@kernellabs.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
Michael Krufky 2010-01-10 18:13:33 -03:00 committed by Mauro Carvalho Chehab
parent 07d1c69b2d
commit 3f76cf8c8e
1 changed files with 2 additions and 1 deletions

View File

@ -144,7 +144,8 @@ static void set_audio(struct dvb_frontend *fe,
}
if (params->mode == V4L2_TUNER_RADIO) {
priv->tda8290_easy_mode = 0x01; /* Start with MN values */
/* Set TDA8295 to FM radio; Start TDA8290 with MN values */
priv->tda8290_easy_mode = (priv->ver & TDA8295) ? 0x80 : 0x01;
tuner_dbg("setting to radio FM\n");
} else {
tuner_dbg("setting tda829x to system %s\n", mode);