]> git.ipfire.org Git - people/ms/linux.git/commitdiff
x86/tsc: Change Fast TSC calibration failed from error to info
authorAlexandre Demers <alexandre.f.demers@gmail.com>
Tue, 9 Dec 2014 06:27:50 +0000 (01:27 -0500)
committerJiri Slaby <jslaby@suse.cz>
Thu, 29 Jan 2015 14:45:05 +0000 (15:45 +0100)
commit 520452172e6b318f3a8bd9d4fe1e25066393de25 upstream.

Many users see this message when booting without knowning that it is
of no importance and that TSC calibration may have succeeded by
another way.

As explained by Paul Bolle in
http://lkml.kernel.org/r/1348488259.1436.22.camel@x61.thuisdomein

  "Fast TSC calibration failed" should not be considered as an error
  since other calibration methods are being tried afterward. At most,
  those send a warning if they fail (not an error). So let's change
  the message from error to warning.

[ tglx: Make if pr_info. It's really not important at all ]

Fixes: c767a54ba065 x86/debug: Add KERN_<LEVEL> to bare printks, convert printks to pr_<level>
Signed-off-by: Alexandre Demers <alexandre.f.demers@gmail.com>
Link: http://lkml.kernel.org/r/1418106470-6906-1-git-send-email-alexandre.f.demers@gmail.com
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Jiri Slaby <jslaby@suse.cz>
arch/x86/kernel/tsc.c

index a7fef605b1c032208e86f0fe6df4f5188f8844d8..cefe57ce4ebd6c40c04959014f98394fa3096c4a 100644 (file)
@@ -386,7 +386,7 @@ static unsigned long quick_pit_calibrate(void)
                        goto success;
                }
        }
-       pr_err("Fast TSC calibration failed\n");
+       pr_info("Fast TSC calibration failed\n");
        return 0;
 
 success: