dect
/
linux-2.6
Archived
13
0
Fork 0

[PATCH] v4l: (949) Added support for secam l'

Added support for SECAM L'

Signed-off-by: Hartmut Hackmann <hartmut.hackmann@t.online.de>
Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
Hartmut Hackmann 2005-11-13 16:07:58 -08:00 committed by Linus Torvalds
parent bd985160a9
commit 70146cfc84
1 changed files with 4 additions and 0 deletions

View File

@ -437,6 +437,10 @@ static void set_audio(struct tuner *t)
t->sgIF = 124;
t->tda8290_easy_mode = 0x20;
mode = "L";
} else if (t->std & V4L2_STD_SECAM_LC) {
t->sgIF = 20;
t->tda8290_easy_mode = 0x40;
mode = "LC";
}
tuner_dbg("setting tda8290 to system %s\n", mode);
}