Skip to content

Commit

Permalink
V4L/DVB (7737): drx397xD: fix math usage
Browse files Browse the repository at this point in the history
The previous code were using a div64 math specific to i386. Replace for an
asm-generic one.

Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
  • Loading branch information
Mauro Carvalho Chehab committed Jul 23, 2008
1 parent 89f9257 commit 29e031d
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions drivers/media/dvb/frontends/drx397xD.c
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
#include <linux/delay.h>
#include <linux/string.h>
#include <linux/firmware.h>
#include <asm/div64.h>

#include "dvb_frontend.h"
#include "drx397xD.h"
Expand Down Expand Up @@ -1024,17 +1025,15 @@ static int drx_tune(struct drx397xD_state *s,
rc = WR16(s, 0x0820050, rc);

{
long dummy;

/* Configure bandwidth specific factor */
ebx = div_ll_X_l_rem(((u64) (s->f_osc) << 21) + (ebx >> 1),
ebx, &dummy) - 0x800000;
ebx = div64_64(((u64) (s->f_osc) << 21) + (ebx >> 1),
(u64)ebx) - 0x800000;
EXIT_RC(WR16(s, 0x0c50010, ebx & 0xffff));
EXIT_RC(WR16(s, 0x0c50011, ebx >> 16));

/* drx397xD oscillator calibration */
ebx = div_ll_X_l_rem(((u64) (s->config.f_if + df_tuner) << 28) +
(s->f_osc >> 1), s->f_osc, &dummy);
ebx = div64_64(((u64) (s->config.f_if + df_tuner) << 28) +
(s->f_osc >> 1), (u64)s->f_osc);
}
ebx &= 0xfffffff;
if (fep->inversion == INVERSION_ON)
Expand Down

0 comments on commit 29e031d

Please sign in to comment.