]> git.kernelconcepts.de Git - karo-tx-uboot.git/blobdiff - lib_blackfin/muldi3.c
Coding Style cleanup
[karo-tx-uboot.git] / lib_blackfin / muldi3.c
index a5622424fd749be3706fff4fb92e227e71579ef0..1fc34e3d932d49cce4ad5fe1c9f5ecd169bc896e 100644 (file)
@@ -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;
 }