[PATCH] trivial 'missing \n' printk fix

From: Denis Vlasenko
Date: Fri Apr 09 2004 - 02:08:24 EST


--
vda--- linux-2.6.5/arch/i386/kernel/timers/timer_tsc.c.orig Sun Apr 4 06:37:36 2004
+++ linux-2.6.5/arch/i386/kernel/timers/timer_tsc.c Fri Apr 9 10:02:03 2004
@@ -232,11 +232,11 @@
/* sanity check to ensure we're not always losing ticks */
if (lost_count++ > 100) {
printk(KERN_WARNING "Losing too many ticks!\n");
- printk(KERN_WARNING "TSC cannot be used as a timesource. ");
+ printk(KERN_WARNING "TSC cannot be used as a timesource.\n");
printk(KERN_WARNING "Possible reasons for this are:\n");
- printk(KERN_WARNING " You're running with Speedstep,\n");
- printk(KERN_WARNING " You don't have DMA enabled for your hard disk (see hdparm),\n");
- printk(KERN_WARNING " Incorrect TSC synchronization on an SMP system (see dmesg).\n");
+ printk(KERN_WARNING " you're running with Speedstep,\n");
+ printk(KERN_WARNING " you don't have DMA enabled for your hard disk (see hdparm),\n");
+ printk(KERN_WARNING " incorrect TSC synchronization on an SMP system (see dmesg).\n");
printk(KERN_WARNING "Falling back to a sane timesource now.\n");

clock_fallback();