arm: rpi: Drop CONFIG_CONS_INDEX
[oweals/u-boot.git] / include / debug_uart.h
index 5d5349bbd2e87ed9b65131fc6d095dd56cd19172..2980ae6200f25949c75a32e834b0329ae3020471 100644 (file)
@@ -115,15 +115,23 @@ void printhex8(uint value);
  * Now define some functions - this should be inserted into the serial driver
  */
 #define DEBUG_UART_FUNCS \
-       void printch(int ch) \
+\
+       static inline void _printch(int ch) \
        { \
+               if (ch == '\n') \
+                       _debug_uart_putc('\r'); \
                _debug_uart_putc(ch); \
        } \
+\
+       void printch(int ch) \
+       { \
+               _printch(ch); \
+       } \
 \
        void printascii(const char *str) \
        { \
                while (*str) \
-                       _debug_uart_putc(*str++); \
+                       _printch(*str++); \
        } \
 \
        static inline void printhex1(uint digit) \