From: Ian Campbell Date: Thu, 4 Jun 2015 15:31:41 +0000 (+0100) Subject: xen: arm: add missing newline to error message. X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~3135 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=6a7f7c988b8c159ffad50cfee7f81c6ab3d7b037;p=xen.git xen: arm: add missing newline to error message. Signed-off-by: Ian Campbell Reviewed-by: Julien Grall --- diff --git a/xen/arch/arm/irq.c b/xen/arch/arm/irq.c index 376c9f2348..2dd43eedb7 100644 --- a/xen/arch/arm/irq.c +++ b/xen/arch/arm/irq.c @@ -417,7 +417,7 @@ int route_irq_to_guest(struct domain *d, unsigned int virq, /* Only routing to virtual SPIs is supported */ if ( virq < NR_LOCAL_IRQS ) { - printk(XENLOG_G_ERR "IRQ can only be routed to an SPI"); + printk(XENLOG_G_ERR "IRQ can only be routed to an SPI\n"); return -EINVAL; }