From: Bjorn Helgaas Date: Fri, 4 Jan 2013 22:41:47 +0000 (-0700) Subject: x86/time/rtc: Don't print extended CMOS year when reading RTC X-Git-Tag: v3.9~438^2~7 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6125bc8b86d9da75ddac77e38f41afbf9f5de3e3;p=platform%2Fkernel%2Flinux-amlogic.git x86/time/rtc: Don't print extended CMOS year when reading RTC We shouldn't print the current century every time we read the RTC. Signed-off-by: Bjorn Helgaas Acked-by: Thomas Gleixner Link: http://lkml.kernel.org/r/20130104224146.15189.14874.stgit@bhelgaas.mtv.corp.google.com Signed-off-by: Ingo Molnar --- diff --git a/arch/x86/kernel/rtc.c b/arch/x86/kernel/rtc.c index 801602b..2e8f3d3 100644 --- a/arch/x86/kernel/rtc.c +++ b/arch/x86/kernel/rtc.c @@ -149,7 +149,6 @@ unsigned long mach_get_cmos_time(void) if (century) { century = bcd2bin(century); year += century * 100; - printk(KERN_INFO "Extended CMOS year: %d\n", century * 100); } else year += CMOS_YEARS_OFFS;