projects
/
platform
/
kernel
/
linux-rpi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
888680f
)
[media] si2168: implement CNR statistic
author
Antti Palosaari
<crope@iki.fi>
Wed, 9 Jul 2014 23:22:27 +0000
(20:22 -0300)
committer
Mauro Carvalho Chehab
<m.chehab@samsung.com>
Tue, 15 Jul 2014 00:07:02 +0000
(21:07 -0300)
Implement CNR statistic.
Signed-off-by: Antti Palosaari <crope@iki.fi>
Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
drivers/media/dvb-frontends/si2168.c
patch
|
blob
|
history
diff --git
a/drivers/media/dvb-frontends/si2168.c
b/drivers/media/dvb-frontends/si2168.c
index
dc8ec9e
..
150d866
100644
(file)
--- a/
drivers/media/dvb-frontends/si2168.c
+++ b/
drivers/media/dvb-frontends/si2168.c
@@
-141,6
+141,15
@@
static int si2168_read_status(struct dvb_frontend *fe, fe_status_t *status)
s->fe_status = *status;
+ if (*status & FE_HAS_LOCK) {
+ c->cnr.len = 1;
+ c->cnr.stat[0].scale = FE_SCALE_DECIBEL;
+ c->cnr.stat[0].svalue = cmd.args[3] * 1000 / 4;
+ } else {
+ c->cnr.len = 1;
+ c->cnr.stat[0].scale = FE_SCALE_NOT_AVAILABLE;
+ }
+
dev_dbg(&s->client->dev, "%s: status=%02x args=%*ph\n",
__func__, *status, cmd.rlen, cmd.args);