From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andrew Cooper Subject: [PATCH 1/5] x86/cpu: Newline on 'invalid siblings' warning Date: Tue, 29 Jul 2014 15:29:57 +0100 Message-ID: <1406644201-9850-2-git-send-email-andrew.cooper3@citrix.com> References: <1406644201-9850-1-git-send-email-andrew.cooper3@citrix.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <1406644201-9850-1-git-send-email-andrew.cooper3@citrix.com> List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xen.org Errors-To: xen-devel-bounces@lists.xen.org To: Xen-devel Cc: Andrew Cooper , Jan Beulich List-Id: xen-devel@lists.xenproject.org Reindent to keep the line within 80 characters. Signed-off-by: Andrew Cooper CC: Jan Beulich --- xen/arch/x86/cpu/common.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/xen/arch/x86/cpu/common.c b/xen/arch/x86/cpu/common.c index 0741696..56c552c 100644 --- a/xen/arch/x86/cpu/common.c +++ b/xen/arch/x86/cpu/common.c @@ -444,7 +444,9 @@ void __cpuinit detect_ht(struct cpuinfo_x86 *c) } else if (c->x86_num_siblings > 1 ) { if (c->x86_num_siblings > nr_cpu_ids) { - printk(KERN_WARNING "CPU: Unsupported number of the siblings %d", c->x86_num_siblings); + printk(KERN_WARNING + "CPU: Unsupported number of the siblings %d\n", + c->x86_num_siblings); c->x86_num_siblings = 1; return; } -- 1.7.10.4