Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 242143
b: refs/heads/master
c: b50b3a1
h: refs/heads/master
i:
  242141: 18a2dab
  242139: 2c9c4f9
  242135: 5b56df0
  242127: 0190bff
  242111: bf5ced2
v: v3
  • Loading branch information
Malcolm Priestley authored and Mauro Carvalho Chehab committed Mar 22, 2011
1 parent 2520c5f commit d74a1a9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 590f21680616a78f7d6972b92ceb540e306452c1
refs/heads/master: b50b3a1acd22a07e354a154e5d00a9d338446b77
7 changes: 5 additions & 2 deletions trunk/drivers/media/dvb/frontends/stv0288.c
Original file line number Diff line number Diff line change
Expand Up @@ -367,8 +367,11 @@ static int stv0288_read_status(struct dvb_frontend *fe, fe_status_t *status)
dprintk("%s : FE_READ_STATUS : VSTATUS: 0x%02x\n", __func__, sync);

*status = 0;

if ((sync & 0x08) == 0x08) {
if (sync & 0x80)
*status |= FE_HAS_CARRIER | FE_HAS_SIGNAL;
if (sync & 0x10)
*status |= FE_HAS_VITERBI;
if (sync & 0x08) {
*status |= FE_HAS_LOCK;
dprintk("stv0288 has locked\n");
}
Expand Down

0 comments on commit d74a1a9

Please sign in to comment.