Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1481120
| From | Colin King <colin.king@canonical.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH] x86/xen: add missing \n at end of printk warning message |
| Date | 2016-09-12 12:30 +0200 |
| Message-ID | <sgwEV-1Zi-1@gated-at.bofh.it> (permalink) |
| Organization | linux.* mail to news gateway |
From: Colin Ian King <colin.king@canonical.com> The message is missing a \n, add it. Signed-off-by: Colin Ian King <colin.king@canonical.com> --- arch/x86/xen/platform-pci-unplug.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/x86/xen/platform-pci-unplug.c b/arch/x86/xen/platform-pci-unplug.c index d37a0c7..90d1b83 100644 --- a/arch/x86/xen/platform-pci-unplug.c +++ b/arch/x86/xen/platform-pci-unplug.c @@ -61,7 +61,7 @@ static int check_platform_magic(void) } break; default: - printk(KERN_WARNING "Xen Platform PCI: unknown I/O protocol version"); + printk(KERN_WARNING "Xen Platform PCI: unknown I/O protocol version\n"); return XEN_PLATFORM_ERR_PROTOCOL; } -- 2.9.3
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
[PATCH] x86/xen: add missing \n at end of printk warning message Colin King <colin.king@canonical.com> - 2016-09-12 12:30 +0200 Re: [PATCH] x86/xen: add missing \n at end of printk warning message Juergen Gross <jgross@suse.com> - 2016-09-12 13:40 +0200
csiph-web