extern int time_status;                /* clock synchronization status bits */
 extern long time_offset;       /* time adjustment (us) */
 extern long time_constant;     /* pll time constant */
-extern long time_tolerance;    /* frequency tolerance (ppm) */
 extern long time_precision;    /* clock precision (us) */
 extern long time_maxerror;     /* maximum error */
 extern long time_esterror;     /* estimated error */
 
 int time_status = STA_UNSYNC;          /* clock status bits            */
 long time_offset;                      /* time adjustment (ns)         */
 long time_constant = 2;                        /* pll time constant            */
-long time_tolerance = MAXFREQ;         /* frequency tolerance (ppm)    */
 long time_precision = 1;               /* clock precision (us)         */
 long time_maxerror = NTP_PHASE_LIMIT;  /* maximum error (us)           */
 long time_esterror = NTP_PHASE_LIMIT;  /* estimated error (us)         */
        long time_adj;
 
        /* Bump the maxerror field */
-       time_maxerror += time_tolerance >> SHIFT_USEC;
+       time_maxerror += MAXFREQ >> SHIFT_USEC;
        if (time_maxerror > NTP_PHASE_LIMIT) {
                time_maxerror = NTP_PHASE_LIMIT;
                time_status |= STA_UNSYNC;
                        } else /* calibration interval too long (p. 12) */
                                result = TIME_ERROR;
                    }
-                   time_freq = min(time_freq, time_tolerance);
-                   time_freq = max(time_freq, -time_tolerance);
+                   time_freq = min(time_freq, MAXFREQ);
+                   time_freq = max(time_freq, -MAXFREQ);
                    time_offset = (time_offset * NSEC_PER_USEC / HZ) << SHIFT_UPDATE;
                } /* STA_PLL */
            } /* txc->modes & ADJ_OFFSET */
        txc->status        = time_status;
        txc->constant      = time_constant;
        txc->precision     = time_precision;
-       txc->tolerance     = time_tolerance;
+       txc->tolerance     = MAXFREQ;
        txc->tick          = tick_usec;
 
        /* PPS is not implemented, so these are zero */