diff options
author | Antti Palosaari <crope@iki.fi> | 2015-04-14 14:44:20 +0200 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@osg.samsung.com> | 2015-05-30 17:05:55 +0200 |
commit | ce80d713e380581071e4050410fe71a4c926884d (patch) | |
tree | 3188c894cd5026077a6be4f5bb305ea8b7c857fe /drivers/media/dvb-frontends/m88ds3103_priv.h | |
parent | [media] m88ds3103: implement DVBv5 CNR statistics (diff) | |
download | linux-ce80d713e380581071e4050410fe71a4c926884d.tar.xz linux-ce80d713e380581071e4050410fe71a4c926884d.zip |
[media] m88ds3103: implement DVBv5 BER
Implement DVBv5 BER statistics.
Wrap legacy DVBv3 BER to DVBv5 BER.
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/m88ds3103_priv.h')
-rw-r--r-- | drivers/media/dvb-frontends/m88ds3103_priv.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/media/dvb-frontends/m88ds3103_priv.h b/drivers/media/dvb-frontends/m88ds3103_priv.h index a2c0958111f8..78e58e3c8c24 100644 --- a/drivers/media/dvb-frontends/m88ds3103_priv.h +++ b/drivers/media/dvb-frontends/m88ds3103_priv.h @@ -38,13 +38,15 @@ struct m88ds3103_priv { struct dvb_frontend fe; fe_delivery_system_t delivery_system; fe_status_t fe_status; - u32 ber; + u32 dvbv3_ber; /* for old DVBv3 API read_ber */ bool warm; /* FW running */ struct i2c_adapter *i2c_adapter; /* auto detect chip id to do different config */ u8 chip_id; /* main mclk is calculated for M88RS6000 dynamically */ u32 mclk_khz; + u64 post_bit_error; + u64 post_bit_count; }; struct m88ds3103_reg_val { |