|
@@ -786,8 +786,9 @@ static long hardpps_update_freq(struct pps_normtime freq_norm)
|
|
|
time_status |= STA_PPSERROR;
|
|
|
pps_errcnt++;
|
|
|
pps_dec_freq_interval();
|
|
|
- pr_err("hardpps: PPSERROR: interval too long - %ld s\n",
|
|
|
- freq_norm.sec);
|
|
|
+ printk_deferred(KERN_ERR
|
|
|
+ "hardpps: PPSERROR: interval too long - %ld s\n",
|
|
|
+ freq_norm.sec);
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
@@ -800,7 +801,8 @@ static long hardpps_update_freq(struct pps_normtime freq_norm)
|
|
|
delta = shift_right(ftemp - pps_freq, NTP_SCALE_SHIFT);
|
|
|
pps_freq = ftemp;
|
|
|
if (delta > PPS_MAXWANDER || delta < -PPS_MAXWANDER) {
|
|
|
- pr_warning("hardpps: PPSWANDER: change=%ld\n", delta);
|
|
|
+ printk_deferred(KERN_WARNING
|
|
|
+ "hardpps: PPSWANDER: change=%ld\n", delta);
|
|
|
time_status |= STA_PPSWANDER;
|
|
|
pps_stbcnt++;
|
|
|
pps_dec_freq_interval();
|
|
@@ -844,8 +846,9 @@ static void hardpps_update_phase(long error)
|
|
|
* the time offset is updated.
|
|
|
*/
|
|
|
if (jitter > (pps_jitter << PPS_POPCORN)) {
|
|
|
- pr_warning("hardpps: PPSJITTER: jitter=%ld, limit=%ld\n",
|
|
|
- jitter, (pps_jitter << PPS_POPCORN));
|
|
|
+ printk_deferred(KERN_WARNING
|
|
|
+ "hardpps: PPSJITTER: jitter=%ld, limit=%ld\n",
|
|
|
+ jitter, (pps_jitter << PPS_POPCORN));
|
|
|
time_status |= STA_PPSJITTER;
|
|
|
pps_jitcnt++;
|
|
|
} else if (time_status & STA_PPSTIME) {
|
|
@@ -902,7 +905,7 @@ void __hardpps(const struct timespec *phase_ts, const struct timespec *raw_ts)
|
|
|
time_status |= STA_PPSJITTER;
|
|
|
/* restart the frequency calibration interval */
|
|
|
pps_fbase = *raw_ts;
|
|
|
- pr_err("hardpps: PPSJITTER: bad pulse\n");
|
|
|
+ printk_deferred(KERN_ERR "hardpps: PPSJITTER: bad pulse\n");
|
|
|
return;
|
|
|
}
|
|
|
|