diff --git a/[refs] b/[refs] index 4e824684a210..38994c03e7dc 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 5cd1c9c5cf30d4b33df3d3f74d8142f278d536b7 +refs/heads/master: d40e944c25fb4642adb2a4c580a48218a9f3f824 diff --git a/trunk/include/linux/timex.h b/trunk/include/linux/timex.h index c00bcdd3ae42..9007313b5b71 100644 --- a/trunk/include/linux/timex.h +++ b/trunk/include/linux/timex.h @@ -82,7 +82,7 @@ */ #define SHIFT_USEC 16 /* frequency offset scale (shift) */ #define PPM_SCALE (NSEC_PER_USEC << (NTP_SCALE_SHIFT - SHIFT_USEC)) -#define PPM_SCALE_INV_SHIFT 20 +#define PPM_SCALE_INV_SHIFT 19 #define PPM_SCALE_INV ((1ll << (PPM_SCALE_INV_SHIFT + NTP_SCALE_SHIFT)) / \ PPM_SCALE + 1) diff --git a/trunk/kernel/time/ntp.c b/trunk/kernel/time/ntp.c index 450a45cb01c1..ddb0465a6baa 100644 --- a/trunk/kernel/time/ntp.c +++ b/trunk/kernel/time/ntp.c @@ -406,9 +406,8 @@ int do_adjtimex(struct timex *txc) if (time_status & (STA_UNSYNC|STA_CLOCKERR)) result = TIME_ERROR; - txc->freq = shift_right((s32)(time_freq >> PPM_SCALE_INV_SHIFT) * - (s64)PPM_SCALE_INV, - NTP_SCALE_SHIFT); + txc->freq = shift_right((time_freq >> PPM_SCALE_INV_SHIFT) * + (s64)PPM_SCALE_INV, NTP_SCALE_SHIFT); txc->maxerror = time_maxerror; txc->esterror = time_esterror; txc->status = time_status;