* [PATCH] ks0127 status flags
@ 2007-01-04 15:53 Martin Samuelsson
0 siblings, 0 replies; only message in thread
From: Martin Samuelsson @ 2007-01-04 15:53 UTC (permalink / raw)
To: linux-kernel; +Cc: Mauro Carvalho Chehab
Or status flags together in DECODER_GET_STATUS instead of and-zapping them.
Signed-off-by: Martin Samuelsson <sam@home.se>
---
ks0127.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff -ruN linux-2.6.20-rc3/drivers/media/video/ks0127.c linux-2.6.20-rc3-sam/drivers/media/video/ks0127.c
--- linux-2.6.20-rc3/drivers/media/video/ks0127.c 2006-11-29 22:57:37.000000000 +0100
+++ linux-2.6.20-rc3-sam/drivers/media/video/ks0127.c 2006-12-31 17:01:35.000000000 +0100
@@ -712,13 +712,13 @@
*iarg = 0;
status = ks0127_read(ks, KS_STAT);
if (!(status & 0x20)) /* NOVID not set */
- *iarg = (*iarg & DECODER_STATUS_GOOD);
+ *iarg = (*iarg | DECODER_STATUS_GOOD);
if ((status & 0x01)) /* CLOCK set */
- *iarg = (*iarg & DECODER_STATUS_COLOR);
+ *iarg = (*iarg | DECODER_STATUS_COLOR);
if ((status & 0x08)) /* PALDET set */
- *iarg = (*iarg & DECODER_STATUS_PAL);
+ *iarg = (*iarg | DECODER_STATUS_PAL);
else
- *iarg = (*iarg & DECODER_STATUS_NTSC);
+ *iarg = (*iarg | DECODER_STATUS_NTSC);
break;
//Catch any unknown command
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2007-01-04 16:15 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-01-04 15:53 [PATCH] ks0127 status flags Martin Samuelsson
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome