From 495b12618dbcdfb317efe904c1de0fb02193e41a Mon Sep 17 00:00:00 2001 From: Michal Simek Date: Thu, 10 Nov 2011 13:40:08 +0100 Subject: [PATCH] --- yaml --- r: 283159 b: refs/heads/master c: a8c2e555b05d6203576e396eba01f17cb2516e66 h: refs/heads/master i: 283157: 740a0dc4dccf9704d0a396723d6899bba527371d 283155: 5d2517ad83532aa3926df0f54458753aa8abba37 283151: 4ac5d6a37a9fa5191cfbf2a538216f20d65f3c75 v: v3 --- [refs] | 2 +- trunk/arch/microblaze/kernel/early_printk.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/[refs] b/[refs] index 82932e41fdb1..9d1f1dac59a1 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 6c7a2676f594ca9a30203b4fd5dc26b53682cffe +refs/heads/master: a8c2e555b05d6203576e396eba01f17cb2516e66 diff --git a/trunk/arch/microblaze/kernel/early_printk.c b/trunk/arch/microblaze/kernel/early_printk.c index d26d92d47754..8356e47631c4 100644 --- a/trunk/arch/microblaze/kernel/early_printk.c +++ b/trunk/arch/microblaze/kernel/early_printk.c @@ -50,9 +50,9 @@ static void early_printk_uartlite_write(struct console *unused, const char *s, unsigned n) { while (*s && n-- > 0) { - early_printk_uartlite_putc(*s); if (*s == '\n') early_printk_uartlite_putc('\r'); + early_printk_uartlite_putc(*s); s++; } } @@ -94,9 +94,9 @@ static void early_printk_uart16550_write(struct console *unused, const char *s, unsigned n) { while (*s && n-- > 0) { - early_printk_uart16550_putc(*s); if (*s == '\n') early_printk_uart16550_putc('\r'); + early_printk_uart16550_putc(*s); s++; } }