From: Stefan Roese Date: Fri, 15 May 2020 05:09:03 +0000 (+0200) Subject: debug_uart: Add CR before and after announce string X-Git-Url: http://git.dujemihanovic.xyz/img/static/git-favicon.png?a=commitdiff_plain;h=ce6515ecee1fa060a7a4e79eafc8db5f86d259a0;p=u-boot.git debug_uart: Add CR before and after announce string Add linefeeds before and after the announce string. This makes the output easier to read, especially if some text follows the announce message without a specific additional CR. Signed-off-by: Stefan Roese Reviewed-by: Bin Meng --- diff --git a/include/debug_uart.h b/include/debug_uart.h index 4d1c58075c..714b369e6f 100644 --- a/include/debug_uart.h +++ b/include/debug_uart.h @@ -112,7 +112,7 @@ void printhex8(unsigned int value); void printdec(unsigned int value); #ifdef CONFIG_DEBUG_UART_ANNOUNCE -#define _DEBUG_UART_ANNOUNCE printascii(" "); +#define _DEBUG_UART_ANNOUNCE printascii("\n\n"); #else #define _DEBUG_UART_ANNOUNCE #endif