diff options
author | Antti Palosaari <crope@iki.fi> | 2015-04-21 17:14:44 +0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@osg.samsung.com> | 2015-08-11 13:34:58 +0300 |
commit | 267897a4708fd7a0592333f33a4a7c393c999ab7 (patch) | |
tree | a6d9b649f9e81a3af817e4ff27433a9e76a3b5c9 /drivers/media/dvb-frontends/tda10071_priv.h | |
parent | 4c4acb7a7e81e41901825ca2afb064ada672b39c (diff) | |
download | linux-267897a4708fd7a0592333f33a4a7c393c999ab7.tar.xz |
[media] tda10071: implement DVBv5 statistics
Implement DVBv5 CNR, signal strength, BER and block errors.
Wrap legacy DVBv3 statistics to DVBv5 internally.
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/tda10071_priv.h')
-rw-r--r-- | drivers/media/dvb-frontends/tda10071_priv.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/drivers/media/dvb-frontends/tda10071_priv.h b/drivers/media/dvb-frontends/tda10071_priv.h index cf5b43337136..b9c3601802ba 100644 --- a/drivers/media/dvb-frontends/tda10071_priv.h +++ b/drivers/media/dvb-frontends/tda10071_priv.h @@ -38,12 +38,13 @@ struct tda10071_dev { u8 pll_multiplier; u8 tuner_i2c_addr; - u8 meas_count[2]; - u32 ber; - u32 ucb; + u8 meas_count; + u32 dvbv3_ber; enum fe_status fe_status; enum fe_delivery_system delivery_system; bool warm; /* FW running */ + u64 post_bit_error; + u64 block_error; }; static struct tda10071_modcod { |