* [PATCH] saa7111.c: fix VIDEO_MODE_SECAM
@ 2004-10-30 10:16 Russell King
0 siblings, 0 replies; only message in thread
From: Russell King @ 2004-10-30 10:16 UTC (permalink / raw)
To: Linux Kernel List, Andrew Morton, michael
(untested since I do not have any SECAM tv sources.)
VIDEO_MODE_SECAM was incorrectly writing the contents of cached
register 14 back to hardware register 8, rather than using cached
register 8.
Signed-off-by: Russell King <rmk@arm.linux.org.uk>
diff -up -x BitKeeper -x ChangeSet -x SCCS -x _xlk -x *.orig -x *.rej orig/drivers/media/video/saa7111.c linux/drivers/media/video/saa7111.c
--- orig/drivers/media/video/saa7111.c Mon May 24 11:25:07 2004
+++ linux/drivers/media/video/saa7111.c Sat Oct 30 11:13:09 2004
@@ -342,7 +342,7 @@ saa7111_command (struct i2c_client *clie
case VIDEO_MODE_SECAM:
saa7111_write(client, 0x08,
- (decoder->reg[0x0e] & 0x3f) | 0x00);
+ (decoder->reg[0x08] & 0x3f) | 0x00);
saa7111_write(client, 0x0e,
(decoder->reg[0x0e] & 0x8f) | 0x50);
break;
--
Russell King
Linux kernel 2.6 ARM Linux - http://www.arm.linux.org.uk/
maintainer of: 2.6 PCMCIA - http://pcmcia.arm.linux.org.uk/
2.6 Serial core
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2004-10-30 10:16 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-10-30 10:16 [PATCH] saa7111.c: fix VIDEO_MODE_SECAM Russell King
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox