aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMauro Carvalho Chehab <mchehab@redhat.com>2013-03-22 05:22:45 -0400
committerMauro Carvalho Chehab <mchehab@redhat.com>2013-03-22 08:46:31 -0400
commitf35d09db0e61009679e41cc5afa2d205b99c3816 (patch)
tree7da8e8eb04b1659f5b0a73e32f7709d35688ff2a
parentd7104bffcfb7a1a7f1dbb1274443e339588c2cb3 (diff)
[media] siano: use do_div() for 64-bits division
As reported by Frank Schäfer <fschaefer.oss@googlemail.com>: ERROR: "__divdi3" [drivers/media/common/siano/smsdvb.ko] undefined! Reported-by: Frank Schäfer <fschaefer.oss@googlemail.com> Tested-by: Gianluca Gennari <gennarone@gmail.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
-rw-r--r--drivers/media/common/siano/smsdvb-main.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/drivers/media/common/siano/smsdvb-main.c b/drivers/media/common/siano/smsdvb-main.c
index d965a7ae5982..297f1b2f9a32 100644
--- a/drivers/media/common/siano/smsdvb-main.c
+++ b/drivers/media/common/siano/smsdvb-main.c
@@ -22,6 +22,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
22#include <linux/module.h> 22#include <linux/module.h>
23#include <linux/slab.h> 23#include <linux/slab.h>
24#include <linux/init.h> 24#include <linux/init.h>
25#include <asm/div64.h>
25 26
26#include "dmxdev.h" 27#include "dmxdev.h"
27#include "dvbdev.h" 28#include "dvbdev.h"
@@ -244,6 +245,7 @@ static void smsdvb_update_per_slices(struct smsdvb_client_t *client,
244{ 245{
245 struct dvb_frontend *fe = &client->frontend; 246 struct dvb_frontend *fe = &client->frontend;
246 struct dtv_frontend_properties *c = &fe->dtv_property_cache; 247 struct dtv_frontend_properties *c = &fe->dtv_property_cache;
248 u64 tmp;
247 249
248 client->fe_status = sms_to_status(p->is_demod_locked, p->is_rf_locked); 250 client->fe_status = sms_to_status(p->is_demod_locked, p->is_rf_locked);
249 c->modulation = sms_to_modulation(p->constellation); 251 c->modulation = sms_to_modulation(p->constellation);
@@ -272,8 +274,9 @@ static void smsdvb_update_per_slices(struct smsdvb_client_t *client,
272 c->post_bit_count.stat[0].uvalue += p->ber_bit_count; 274 c->post_bit_count.stat[0].uvalue += p->ber_bit_count;
273 275
274 /* Legacy PER/BER */ 276 /* Legacy PER/BER */
275 client->legacy_per = (p->ets_packets * 65535) / 277 tmp = p->ets_packets * 65535;
276 (p->ts_packets + p->ets_packets); 278 do_div(tmp, p->ts_packets + p->ets_packets);
279 client->legacy_per = tmp;
277} 280}
278 281
279static void smsdvb_update_dvb_stats(struct smsdvb_client_t *client, 282static void smsdvb_update_dvb_stats(struct smsdvb_client_t *client,
@@ -803,7 +806,7 @@ static int smsdvb_read_snr(struct dvb_frontend *fe, u16 *snr)
803 rc = smsdvb_send_statistics_request(client); 806 rc = smsdvb_send_statistics_request(client);
804 807
805 /* Preferred scale for SNR with legacy API: 0.1 dB */ 808 /* Preferred scale for SNR with legacy API: 0.1 dB */
806 *snr = c->cnr.stat[0].svalue / 100; 809 *snr = ((u32)c->cnr.stat[0].svalue) / 100;
807 810
808 led_feedback(client); 811 led_feedback(client);
809 812