summaryrefslogtreecommitdiffstats
path: root/drivers/media/dvb/frontends/af9013.c
diff options
context:
space:
mode:
authorAntti Palosaari <crope@iki.fi>2008-09-16 14:22:43 -0300
committerMauro Carvalho Chehab <mchehab@redhat.com>2008-10-12 09:37:03 -0200
commit28f947a95386861c54de2bf7753dda011c8e15c3 (patch)
tree95a6f09feaf720c06057be3360fbd6a12efd626b /drivers/media/dvb/frontends/af9013.c
parent80619de8117701cad1fb5526be6fcfe6fc2a6cc2 (diff)
downloadop-kernel-dev-28f947a95386861c54de2bf7753dda011c8e15c3.zip
op-kernel-dev-28f947a95386861c54de2bf7753dda011c8e15c3.tar.gz
V4L/DVB (8973): af9013: fix compile error coming from u64 div
- fix compile error coming from u64 div Signed-off-by: Antti Palosaari <crope@iki.fi> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/dvb/frontends/af9013.c')
-rw-r--r--drivers/media/dvb/frontends/af9013.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/drivers/media/dvb/frontends/af9013.c b/drivers/media/dvb/frontends/af9013.c
index 9f2129d..50e1e3f 100644
--- a/drivers/media/dvb/frontends/af9013.c
+++ b/drivers/media/dvb/frontends/af9013.c
@@ -941,7 +941,6 @@ static int af9013_update_ber_unc(struct dvb_frontend *fe)
u32 error_bit_count = 0;
u32 total_bit_count = 0;
u32 abort_packet_count = 0;
- u64 numerator, denominator;
state->ber = 0;
@@ -979,11 +978,8 @@ static int af9013_update_ber_unc(struct dvb_frontend *fe)
total_bit_count = total_bit_count - abort_packet_count;
total_bit_count = total_bit_count * 204 * 8;
- if (total_bit_count) {
- numerator = error_bit_count * 1000000000;
- denominator = total_bit_count;
- state->ber = numerator / denominator;
- }
+ if (total_bit_count)
+ state->ber = error_bit_count * 1000000000 / total_bit_count;
state->ucblocks += abort_packet_count;
OpenPOWER on IntegriCloud