aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/dvb-frontends/rtl2832.c
diff options
context:
space:
mode:
authorAntti Palosaari <crope@iki.fi>2014-12-14 12:15:55 -0300
committerMauro Carvalho Chehab <mchehab@osg.samsung.com>2015-02-03 16:09:19 -0200
commit1c7da405c6f7def830258349bccdfb96eebcdc61 (patch)
tree48d22a82077157fca2e9a890101c15c7490b230e /drivers/media/dvb-frontends/rtl2832.c
parent[media] rtl2832: drop FE i2c gate control support (diff)
downloadlinux-dev-1c7da405c6f7def830258349bccdfb96eebcdc61.tar.xz
linux-dev-1c7da405c6f7def830258349bccdfb96eebcdc61.zip
[media] rtl2832: define more demod lock statuses
Demod lock flags are derived from demod state machine states. States are running from 1 to 11, where highest state 11 means demod is fully locked and streaming. Naturally smaller state numbers means there is some partial locks. Define now state 10 as missing synch and lock. Signed-off-by: Antti Palosaari <crope@iki.fi> Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Diffstat (limited to 'drivers/media/dvb-frontends/rtl2832.c')
-rw-r--r--drivers/media/dvb-frontends/rtl2832.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/drivers/media/dvb-frontends/rtl2832.c b/drivers/media/dvb-frontends/rtl2832.c
index 3040502c9649..6bcec7506064 100644
--- a/drivers/media/dvb-frontends/rtl2832.c
+++ b/drivers/media/dvb-frontends/rtl2832.c
@@ -753,12 +753,10 @@ static int rtl2832_read_status(struct dvb_frontend *fe, fe_status_t *status)
if (tmp == 11) {
*status |= FE_HAS_SIGNAL | FE_HAS_CARRIER |
FE_HAS_VITERBI | FE_HAS_SYNC | FE_HAS_LOCK;
- }
- /* TODO find out if this is also true for rtl2832? */
- /*else if (tmp == 10) {
+ } else if (tmp == 10) {
*status |= FE_HAS_SIGNAL | FE_HAS_CARRIER |
FE_HAS_VITERBI;
- }*/
+ }
dev->fe_status = *status;
return ret;