Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 137934
b: refs/heads/master
c: 51ca3bd
h: refs/heads/master
v: v3
  • Loading branch information
Roel Kluin authored and Mauro Carvalho Chehab committed Mar 30, 2009
1 parent 1077cb0 commit a8f08ff
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 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: 6722e0ef1f72d86169b2b0f96ad34afd225cd080
refs/heads/master: 51ca3bddf34bb6cdbdddd89f59fe3a0131d40eba
6 changes: 3 additions & 3 deletions trunk/drivers/media/common/tuners/tda18271-common.c
Original file line number Diff line number Diff line change
Expand Up @@ -490,9 +490,9 @@ int tda18271_set_standby_mode(struct dvb_frontend *fe,
tda_dbg("sm = %d, sm_lt = %d, sm_xt = %d\n", sm, sm_lt, sm_xt);

regs[R_EP3] &= ~0xe0; /* clear sm, sm_lt, sm_xt */
regs[R_EP3] |= sm ? (1 << 7) : 0 |
sm_lt ? (1 << 6) : 0 |
sm_xt ? (1 << 5) : 0;
regs[R_EP3] |= (sm ? (1 << 7) : 0) |
(sm_lt ? (1 << 6) : 0) |
(sm_xt ? (1 << 5) : 0);

return tda18271_write_regs(fe, R_EP3, 1);
}
Expand Down

0 comments on commit a8f08ff

Please sign in to comment.