1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-05 12:56:08 +00:00

Disable the "cputick increased..." message now that the dust has settled.

This commit is contained in:
Poul-Henning Kamp 2006-03-15 20:22:32 +00:00
parent b1955eecdd
commit 590487078f
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=156753

View File

@ -882,7 +882,7 @@ cpu_tick_calibrate(int reset)
c_delta <<= 20;
c_delta /= divi;
if (c_delta > cpu_tick_frequency) {
if (bootverbose)
if (0 && bootverbose)
printf("cpu_tick increased to %ju Hz\n",
c_delta);
cpu_tick_frequency = c_delta;