ソースを参照

V4L/DVB (4739): SECAM support for saa7113 into saa7115

Without the attached trivial patch, the saa7113 is set up for PAL when SECAM 
is selected and hence will see only show black and white for SECAM signals.
Tested the patch against the saa7115 module in linux-2.6.17 with a 
Pinnacle 50e USB tuner (em28xx).

Signed-off-by: Pdraig Brady <P@draigBrady.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Pdraig Brady 18 年 前
コミット
fc2fa31f4e
1 ファイル変更2 行追加0 行削除
  1. 2 0
      drivers/media/video/saa7115.c

+ 2 - 0
drivers/media/video/saa7115.c

@@ -960,6 +960,8 @@ static void saa711x_set_v4lstd(struct i2c_client *client, v4l2_std_id std)
 			reg |= 0x10;
 			reg |= 0x10;
 		} else if (std == V4L2_STD_NTSC_M_JP) {
 		} else if (std == V4L2_STD_NTSC_M_JP) {
 			reg |= 0x40;
 			reg |= 0x40;
+		} else if (std == V4L2_STD_SECAM) {
+			reg |= 0x50;
 		}
 		}
 		saa711x_write(client, R_0E_CHROMA_CNTL_1, reg);
 		saa711x_write(client, R_0E_CHROMA_CNTL_1, reg);
 	} else {
 	} else {