ARC: dw2 unwind: Remove falllback linear search thru FDE entries
[cascardo/linux.git] / lib / div64.c
index 19ea7ed..62a698a 100644 (file)
@@ -162,7 +162,7 @@ s64 div64_s64(s64 dividend, s64 divisor)
 {
        s64 quot, t;
 
-       quot = div64_u64(abs64(dividend), abs64(divisor));
+       quot = div64_u64(abs(dividend), abs(divisor));
        t = (dividend ^ divisor) >> 63;
 
        return (quot ^ t) - t;