A space went missing from the printk output at port initialization time,
add it back so the output is more readable.
Signed-off-by: Will Newton <[email protected]>
---
drivers/serial/8250.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/serial/8250.c b/drivers/serial/8250.c
index 303272a..ffa6c72 100644
--- a/drivers/serial/8250.c
+++ b/drivers/serial/8250.c
@@ -3018,7 +3018,7 @@ static int __init serial8250_init(void)
if (nr_uarts > UART_NR)
nr_uarts = UART_NR;
- printk(KERN_INFO "Serial: 8250/16550 driver"
+ printk(KERN_INFO "Serial: 8250/16550 driver "
"%d ports, IRQ sharing %sabled\n", nr_uarts,
share_irqs ? "en" : "dis");
--
1.5.5.2