Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a1789d3a authored by Hans Verkuil's avatar Hans Verkuil Committed by Mauro Carvalho Chehab
Browse files

V4L/DVB (3117): Fix broken TV standard check.



- Fix incorrect matching of TV standards leading to incorrect IFPCoff values.

Signed-off-by: default avatarHans Verkuil <hverkuil@xs4all.nl>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@brturbo.com.br>
parent f98c55ea
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -902,11 +902,12 @@ static void default_set_tv_freq(struct i2c_client *c, unsigned int freq)
		171.2=16*10.70  FM Radio (at set_radio_freq)
	*/

	if (t->std & V4L2_STD_NTSC_M_JP) {
	if (t->std == V4L2_STD_NTSC_M_JP) {
		IFPCoff = 940;
	} else if (t->std & V4L2_STD_MN) {
	} else if ((t->std & V4L2_STD_MN) &&
		  !(t->std & ~V4L2_STD_MN)) {
		IFPCoff = 732;
	} else if (t->std & V4L2_STD_SECAM_LC) {
	} else if (t->std == V4L2_STD_SECAM_LC) {
		IFPCoff = 543;
	} else {
		IFPCoff = 623;