mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-22 16:00:20 +07:00
[media] rtl2830: __udivdi3 undefined
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>
This commit is contained in:
parent
1b741bc3db
commit
479e3492a2
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user