Report SNR in 0.1 dB scale instead of raw hardware register values.

Signed-off-by: Antti Palosaari <[email protected]>
---
 drivers/media/dvb/frontends/zl10353.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/media/dvb/frontends/zl10353.c 
b/drivers/media/dvb/frontends/zl10353.c
index ac72378..23fc853 100644
--- a/drivers/media/dvb/frontends/zl10353.c
+++ b/drivers/media/dvb/frontends/zl10353.c
@@ -525,7 +525,7 @@ static int zl10353_read_snr(struct dvb_frontend *fe, u16 
*snr)
                zl10353_dump_regs(fe);
 
        _snr = zl10353_read_register(state, SNR);
-       *snr = (_snr << 8) | _snr;
+       *snr = 10 * _snr / 8;
 
        return 0;
 }
-- 
1.7.7.6

--
To unsubscribe from this list: send the line "unsubscribe linux-media" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to