]> git.sur5r.net Git - u-boot/blobdiff - include/debug_uart.h
ARM: zynq: Remove ZYNQ_BOOT_FREEBSD option
[u-boot] / include / debug_uart.h
index a6b7ce8e6eede1a1d74850e22663cb0f973bd63c..5d5349bbd2e87ed9b65131fc6d095dd56cd19172 100644 (file)
@@ -105,6 +105,12 @@ void printhex4(uint value);
  */
 void printhex8(uint value);
 
+#ifdef CONFIG_DEBUG_UART_ANNOUNCE
+#define _DEBUG_UART_ANNOUNCE   printascii("<debug_uart> ");
+#else
+#define _DEBUG_UART_ANNOUNCE
+#endif
+
 /*
  * Now define some functions - this should be inserted into the serial driver
  */
@@ -151,6 +157,7 @@ void printhex8(uint value);
        { \
                board_debug_uart_init(); \
                _debug_uart_init(); \
+               _DEBUG_UART_ANNOUNCE \
        } \
 
 #endif