aboutsummaryrefslogtreecommitdiffstats
path: root/init
diff options
context:
space:
mode:
authorJesse Barnes <jbarnes@engr.sgi.com>2004-08-23 21:31:25 -0700
committerLinus Torvalds <torvalds@ppc970.osdl.org>2004-08-23 21:31:25 -0700
commit887c8014fb70a531881c1df8a9fac0fd9d8b4e01 (patch)
treed9d093f32c688a37a72568f83112b5332859cb0d /init
parentf22f9adedabc7989fb81f24dc64de3b0715b8fa6 (diff)
downloadhistory-887c8014fb70a531881c1df8a9fac0fd9d8b4e01.tar.gz
[PATCH] don't print per-cpu delay loop calibration
People are mainly concerned with showing off their total bogomips, not per-cpu bogomips, so turn it into a KERN_DEBUG message for the benefit of systems with lots of CPUs. Signed-off-by: Jesse Barnes <jbarnes@sgi.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'init')
-rw-r--r--init/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/init/main.c b/init/main.c
index 3aee362866e68e..5f9dec5bae4230 100644
--- a/init/main.c
+++ b/init/main.c
@@ -222,7 +222,7 @@ void __devinit calibrate_delay(void)
} else {
loops_per_jiffy = (1<<12);
- printk("Calibrating delay loop... ");
+ printk(KERN_DEBUG "Calibrating delay loop... ");
while ((loops_per_jiffy <<= 1) != 0) {
/* wait for "start of" clock tick */
ticks = jiffies;