kernel: time: Silence "Suspended for..." debug messages.

Change-Id: Id585557f265d748e1d8d8bf2e4471bfcca2fe0a4
This commit is contained in:
darkhz
2020-06-21 16:02:00 +05:30
committed by DhineshCool
parent 8b3da12359
commit 2dff7f511d

View File

@@ -75,7 +75,7 @@ void tk_debug_account_sleep_time(struct timespec64 *t)
int bin = min(fls(t->tv_sec), NUM_BINS-1);
sleep_time_bin[bin]++;
printk_deferred(KERN_INFO "Suspended for %lld.%03lu seconds\n",
pr_debug(KERN_INFO "Suspended for %lld.%03lu seconds\n",
(s64)t->tv_sec, t->tv_nsec / NSEC_PER_MSEC);
}