]> git.sur5r.net Git - u-boot/blobdiff - drivers/serial/serial_stm32.c
Merge git://git.denx.de/u-boot-usb
[u-boot] / drivers / serial / serial_stm32.c
index 1b22c692d2ca3e1268bee7e9be5c5f122a5a20bd..8b2830b946a83b9bf3675c4fef03d2c8fc815882 100644 (file)
@@ -128,6 +128,9 @@ 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);