diff options
-rw-r--r-- | arch/x86_64/kernel/time.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/arch/x86_64/kernel/time.c b/arch/x86_64/kernel/time.c index 9c7fba30dac1..3cc6886f1fb7 100644 --- a/arch/x86_64/kernel/time.c +++ b/arch/x86_64/kernel/time.c | |||
@@ -1226,8 +1226,9 @@ static void hpet_rtc_timer_reinit(void) | |||
1226 | if (PIE_on) | 1226 | if (PIE_on) |
1227 | PIE_count += lost_ints; | 1227 | PIE_count += lost_ints; |
1228 | 1228 | ||
1229 | printk(KERN_WARNING "rtc: lost some interrupts at %ldHz.\n", | 1229 | if (printk_ratelimit()) |
1230 | hpet_rtc_int_freq); | 1230 | printk(KERN_WARNING "rtc: lost some interrupts at %ldHz.\n", |
1231 | hpet_rtc_int_freq); | ||
1231 | } | 1232 | } |
1232 | } | 1233 | } |
1233 | 1234 | ||