X-Git-Url: https://git.kernelconcepts.de/?a=blobdiff_plain;f=lib_blackfin%2Fmuldi3.c;h=1fc34e3d932d49cce4ad5fe1c9f5ecd169bc896e;hb=8e7b703a62783f0e88d3a7e4b1dd1c033bc95ec8;hp=a5622424fd749be3706fff4fb92e227e71579ef0;hpb=1264b4050c6f635cc237b5821f924817457ce50c;p=karo-tx-uboot.git diff --git a/lib_blackfin/muldi3.c b/lib_blackfin/muldi3.c index a5622424fd..1fc34e3d93 100644 --- a/lib_blackfin/muldi3.c +++ b/lib_blackfin/muldi3.c @@ -80,13 +80,13 @@ DItype __muldi3 (DItype u, DItype v) { DIunion w; DIunion uu, vv; - + uu.ll = u, vv.ll = v; /* panic("kernel panic for __muldi3"); */ w.ll = __umulsidi3 (uu.s.low, vv.s.low); w.s.high += ((USItype) uu.s.low * (USItype) vv.s.high + (USItype) uu.s.high * (USItype) vv.s.low); - + return w.ll; }