瀏覽代碼

Revert "stm32f4: fix serial output"

As per the author, we don't need this patch really since the other patch
"stm32f4: fix serial output" superseded it.

This reverts commit 85e5f5b7a7f8d889271f94791606cde62d81d53f.

Signed-off-by: Tom Rini <trini@konsulko.com>
Tom Rini 10 年之前
父節點
當前提交
698a12bef9
共有 1 個文件被更改,包括 0 次插入3 次删除
  1. 0 3
      drivers/serial/serial_stm32.c

+ 0 - 3
drivers/serial/serial_stm32.c

@@ -128,9 +128,6 @@ static void stm32_serial_putc(const char c)
 	struct stm32_serial *usart =
 		(struct stm32_serial *)usart_base[USART_PORT];
 
-	if (c == '\n')
-		stm32_serial_putc('\r');
-
 	while ((readl(&usart->sr) & USART_SR_FLAG_TXE) == 0)
 		;
 	writel(c, &usart->dr);