Skip to content

Commit

Permalink
[PATCH] V4L: Write cached value to correct register for SECAM
Browse files Browse the repository at this point in the history
Write cached value to correct register for SECAM.

Signed-off-by: Dwaine Garden <DwaineGarden@rogers.com>
Signed-off-by: Nickolay V. Shmyrev <nshmyrev@yandex.ru>
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>
  • Loading branch information
Dwaine Garden authored and Linus Torvalds committed Dec 1, 2005
1 parent 13c7280 commit 1bcd2a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/media/video/saa711x.c
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ saa711x_command (struct i2c_client *client,

case VIDEO_MODE_SECAM:
saa711x_write(client, 0x08,
(decoder->reg[0x0e] & 0x3f) | 0x00);
(decoder->reg[0x08] & 0x3f) | 0x00);
saa711x_write(client, 0x0e,
(decoder->reg[0x0e] & 0x8f) | 0x50);
break;
Expand Down

0 comments on commit 1bcd2a3

Please sign in to comment.