arm: add missing newlines to printk()s
authorJan Beulich <jbeulich@suse.com>
Mon, 21 Dec 2015 16:10:09 +0000 (17:10 +0100)
committerJan Beulich <jbeulich@suse.com>
Mon, 21 Dec 2015 16:10:09 +0000 (17:10 +0100)
Signed-off-by: Jan Beulich <jbeulich@suse.com>
Acked-by: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
xen/arch/arm/platforms/brcm.c
xen/arch/arm/platforms/exynos5.c

index a10de22bbb4fbc8662ddfbf5e5d1f03d0f0ba68a..6d8b5b91757b790b8f12881346f4e69bff78ab1b 100644 (file)
@@ -162,7 +162,7 @@ static int brcm_cpu_power_on(int cpu)
 
     if ( timeout == 0 )
     {
-        dprintk(XENLOG_ERR, "CPU%d power enable failed", cpu);
+        dprintk(XENLOG_ERR, "CPU%d power enable failed\n", cpu);
         return -ETIMEDOUT;
     }
 
index 79e3a5faf9fa6f37d99040f85c6dccbd9312c856..bf4964d0a156e8bf9fdfc5796186bc222ee699e1 100644 (file)
@@ -183,7 +183,7 @@ static int exynos5_cpu_power_up(void __iomem *power, int cpu)
 
         if ( timeout == 0 )
         {
-            dprintk(XENLOG_ERR, "CPU%d power enable failed", cpu);
+            dprintk(XENLOG_ERR, "CPU%d power enable failed\n", cpu);
             return -ETIMEDOUT;
         }
     }