summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--v4l/ChangeLog7
-rw-r--r--v4l/lgdt3302.c7
2 files changed, 11 insertions, 3 deletions
diff --git a/v4l/ChangeLog b/v4l/ChangeLog
index 8a243757e..0242abfaf 100644
--- a/v4l/ChangeLog
+++ b/v4l/ChangeLog
@@ -1,3 +1,10 @@
+2005-06-20 00:49 mkrufky
+ * lgdt3302.c:
+ fixed FEC error status
+
+ Signed-off-by: Mac Michaels <wmichaels1@earthlink.net>
+ Signed-off-by: Michael Krufky <mkrufky@m1k.net>
+
2005-06-19 22:55 mkrufky
* cx88-cards.c, cx88-dvb.c, cx88-mpeg.c:
* cx88-video.c, cx88.h, tuner.h:
diff --git a/v4l/lgdt3302.c b/v4l/lgdt3302.c
index cbed1c9aa..34d39efa6 100644
--- a/v4l/lgdt3302.c
+++ b/v4l/lgdt3302.c
@@ -1,5 +1,5 @@
/*
- * $Id: lgdt3302.c,v 1.3 2005/06/18 01:32:25 mkrufky Exp $
+ * $Id: lgdt3302.c,v 1.4 2005/06/20 04:54:30 mkrufky Exp $
*
* Support for LGDT3302 (DViCO FustionHDTV 3 Gold) - VSB/QAM
*
@@ -373,9 +373,10 @@ static int lgdt3302_read_status(struct dvb_frontend* fe, fe_status_t* status)
}
/* FEC error status */
- if ((buf[2] & 0x0c) == 0x08)
+ if ((buf[2] & 0x0c) == 0x08) {
*status |= FE_HAS_LOCK;
- *status |= FE_HAS_VITERBI;
+ *status |= FE_HAS_VITERBI;
+ }
#if 0
/* Alternative method to check for a signal */