mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-14 19:56:52 +07:00
[media] si2168: implement CNR statistic
Implement CNR statistic. Signed-off-by: Antti Palosaari <crope@iki.fi> Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
This commit is contained in:
parent
888680ff9d
commit
88ac8f8606
@ -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);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user