Commit 1bcd2a36 authored by Dwaine Garden's avatar Dwaine Garden Committed by Linus Torvalds

[PATCH] V4L: Write cached value to correct register for SECAM

Write cached value to correct register for SECAM.
Signed-off-by: default avatarDwaine Garden <DwaineGarden@rogers.com>
Signed-off-by: default avatarNickolay V. Shmyrev <nshmyrev@yandex.ru>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@brturbo.com.br>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 13c72805
...@@ -323,7 +323,7 @@ saa711x_command (struct i2c_client *client, ...@@ -323,7 +323,7 @@ saa711x_command (struct i2c_client *client,
case VIDEO_MODE_SECAM: case VIDEO_MODE_SECAM:
saa711x_write(client, 0x08, saa711x_write(client, 0x08,
(decoder->reg[0x0e] & 0x3f) | 0x00); (decoder->reg[0x08] & 0x3f) | 0x00);
saa711x_write(client, 0x0e, saa711x_write(client, 0x0e,
(decoder->reg[0x0e] & 0x8f) | 0x50); (decoder->reg[0x0e] & 0x8f) | 0x50);
break; break;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment