Skip to content

Commit

Permalink
[media] rtl2830: __udivdi3 undefined
Browse files Browse the repository at this point in the history
Il 29/02/2012 22:30, Geert Uytterhoeven ha scritto:
> http://kisskb.ellerman.id.au/kisskb/buildresult/5759200/ ERROR:
> "__udivdi3" [drivers/media/dvb/frontends/rtl2830.ko] undefined!
>
The following patch fixed the warning on my 32 bit system.

Signed-off-by: Gianluca Gennari <gennarone@gmail.com>
Acked-by: Geert Uytterhoeven <geert@linux-m68k.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
  • Loading branch information
Gianluca Gennari authored and Mauro Carvalho Chehab committed Mar 8, 2012
1 parent 1b741bc commit 479e349
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/media/dvb/frontends/rtl2830.c
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ static int rtl2830_init(struct dvb_frontend *fe)

num = priv->cfg.if_dvbt % priv->cfg.xtal;
num *= 0x400000;
num /= priv->cfg.xtal;
num = div_u64(num, priv->cfg.xtal);
num = -num;
if_ctl = num & 0x3fffff;
dbg("%s: if_ctl=%08x", __func__, if_ctl);
Expand Down

0 comments on commit 479e349

Please sign in to comment.