diff options
author | Bimow Chen <Bimow.Chen@ite.com.tw> | 2014-10-02 04:37:13 +0200 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@osg.samsung.com> | 2014-11-04 21:20:35 +0100 |
commit | 6d03f6a875467d924ae4a57c26418810192d842e (patch) | |
tree | 43aa723766712cd2b421e6b1e77c631331fc2357 /drivers/media/dvb-frontends/af9033_priv.h | |
parent | [media] af9033: improve read_signal_strength error handling slightly (diff) | |
download | linux-6d03f6a875467d924ae4a57c26418810192d842e.tar.xz linux-6d03f6a875467d924ae4a57c26418810192d842e.zip |
[media] af9033: fix DVBv3 snr value not correct issue
Snr returns value not correct. Fix it.
Signed-off-by: Bimow Chen <Bimow.Chen@ite.com.tw>
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/af9033_priv.h')
-rw-r--r-- | drivers/media/dvb-frontends/af9033_priv.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/media/dvb-frontends/af9033_priv.h b/drivers/media/dvb-frontends/af9033_priv.h index c9c87981f80b..8e23275148ed 100644 --- a/drivers/media/dvb-frontends/af9033_priv.h +++ b/drivers/media/dvb-frontends/af9033_priv.h @@ -181,7 +181,10 @@ static const struct val_snr qam64_snr_lut[] = { { 0x05570d, 26 }, { 0x059feb, 27 }, { 0x05bf38, 28 }, - { 0xffffff, 29 }, + { 0x05f78f, 29 }, + { 0x0612c3, 30 }, + { 0x0626be, 31 }, + { 0xffffff, 32 }, }; static const struct reg_val ofsm_init[] = { |