]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blobdiff - kernel/time/ntp.c
ntp: use unsigned input for do_div()
[linux-2.6-omap-h63xx.git] / kernel / time / ntp.c
index c88b5910e7abb9c630106fcbf21b6b7a0d363faf..d4bca927f715be0eb89d7dbde021902b82f7fae6 100644 (file)
@@ -342,14 +342,16 @@ int do_adjtimex(struct timex *txc)
                    freq_adj = shift_right(freq_adj, time_constant * 2 +
                                           (SHIFT_PLL + 2) * 2 - SHIFT_NSEC);
                    if (mtemp >= MINSEC && (time_status & STA_FLL || mtemp > MAXSEC)) {
+                       u64 utemp64;
                        temp64 = time_offset << (SHIFT_NSEC - SHIFT_FLL);
                        if (time_offset < 0) {
-                           temp64 = -temp64;
-                           do_div(temp64, mtemp);
-                           freq_adj -= temp64;
+                           utemp64 = -temp64;
+                           do_div(utemp64, mtemp);
+                           freq_adj -= utemp64;
                        } else {
-                           do_div(temp64, mtemp);
-                           freq_adj += temp64;
+                           utemp64 = temp64;
+                           do_div(utemp64, mtemp);
+                           freq_adj += utemp64;
                        }
                    }
                    freq_adj += time_freq;