diff mbox

[1/4] arm: add missing newlines to printk()s

Message ID 56781BD302000078000C1EC9@prv-mh.provo.novell.com (mailing list archive)
State New, archived
Headers show

Commit Message

Jan Beulich Dec. 21, 2015, 2:33 p.m. UTC
Signed-off-by: Jan Beulich <jbeulich@suse.com>
arm: add missing newlines to printk()s

Signed-off-by: Jan Beulich <jbeulich@suse.com>

--- a/xen/arch/arm/platforms/brcm.c
+++ b/xen/arch/arm/platforms/brcm.c
@@ -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;
     }
 
--- a/xen/arch/arm/platforms/exynos5.c
+++ b/xen/arch/arm/platforms/exynos5.c
@@ -183,7 +183,7 @@ static int exynos5_cpu_power_up(void __i
 
         if ( timeout == 0 )
         {
-            dprintk(XENLOG_ERR, "CPU%d power enable failed", cpu);
+            dprintk(XENLOG_ERR, "CPU%d power enable failed\n", cpu);
             return -ETIMEDOUT;
         }
     }

Comments

Stefano Stabellini Dec. 21, 2015, 3:16 p.m. UTC | #1
On Mon, 21 Dec 2015, Jan Beulich wrote:
> Signed-off-by: Jan Beulich <jbeulich@suse.com>

Acked-by: Stefano Stabellini <stefano.stabellini@eu.citrix.com>


> --- a/xen/arch/arm/platforms/brcm.c
> +++ b/xen/arch/arm/platforms/brcm.c
> @@ -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;
>      }
>  
> --- a/xen/arch/arm/platforms/exynos5.c
> +++ b/xen/arch/arm/platforms/exynos5.c
> @@ -183,7 +183,7 @@ static int exynos5_cpu_power_up(void __i
>  
>          if ( timeout == 0 )
>          {
> -            dprintk(XENLOG_ERR, "CPU%d power enable failed", cpu);
> +            dprintk(XENLOG_ERR, "CPU%d power enable failed\n", cpu);
>              return -ETIMEDOUT;
>          }
>      }
> 
> 
> 
>
diff mbox

Patch

--- a/xen/arch/arm/platforms/brcm.c
+++ b/xen/arch/arm/platforms/brcm.c
@@ -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;
     }
 
--- a/xen/arch/arm/platforms/exynos5.c
+++ b/xen/arch/arm/platforms/exynos5.c
@@ -183,7 +183,7 @@  static int exynos5_cpu_power_up(void __i
 
         if ( timeout == 0 )
         {
-            dprintk(XENLOG_ERR, "CPU%d power enable failed", cpu);
+            dprintk(XENLOG_ERR, "CPU%d power enable failed\n", cpu);
             return -ETIMEDOUT;
         }
     }