From ce1a7d1564920e35ad5c7a1f4e68aaec496ec9d4 Mon Sep 17 00:00:00 2001
From: Bin Meng <bmeng.cn@gmail.com>
Date: Thu, 17 Mar 2016 23:59:04 -0700
Subject: [PATCH] debug_uart: Remove duplicated carriage return handling

Since commit b391d74 "debug_uart: output CR along with LF", the
handling in puts() is duplicated, not to mention that it should
output carriage return before line feed.

Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Reviewed-by: Tom Rini <trini@konsulko.com>
---
 common/console.c | 2 --
 1 file changed, 2 deletions(-)

diff --git a/common/console.c b/common/console.c
index 6a0d11bb04..12293f3836 100644
--- a/common/console.c
+++ b/common/console.c
@@ -515,8 +515,6 @@ void puts(const char *s)
 			int ch = *s++;
 
 			printch(ch);
-			if (ch == '\n')
-				printch('\r');
 		}
 		return;
 	}
-- 
2.39.5