diff options
author | Pali Rohár <pali@kernel.org> | 2021-12-17 18:28:51 +0100 |
---|---|---|
committer | Stefan Roese <sr@denx.de> | 2021-12-19 09:50:47 +0100 |
commit | 9c0642d89b7908ba25def65828fb82738d1d6048 (patch) | |
tree | 0b9cc205b62d921c3649826e65ff7344cc42e432 /arch | |
parent | c53a30f0398f17880d57750f10ed9ba560804e93 (diff) | |
download | u-boot-9c0642d89b7908ba25def65828fb82738d1d6048.zip u-boot-9c0642d89b7908ba25def65828fb82738d1d6048.tar.gz u-boot-9c0642d89b7908ba25def65828fb82738d1d6048.tar.bz2 |
arm: mvebu: Remove commented example code
Include file debug_uart.h already contains documentation how to use it.
Signed-off-by: Pali Rohár <pali@kernel.org>
Reviewed-by: Stefan Roese <sr@denx.de>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/mach-mvebu/spl.c | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/arch/arm/mach-mvebu/spl.c b/arch/arm/mach-mvebu/spl.c index 73c4b9a..742d66a 100644 --- a/arch/arm/mach-mvebu/spl.c +++ b/arch/arm/mach-mvebu/spl.c @@ -5,7 +5,6 @@ #include <common.h> #include <dm.h> -#include <debug_uart.h> #include <fdtdec.h> #include <hang.h> #include <image.h> @@ -250,18 +249,6 @@ void board_init_f(ulong dummy) */ board_early_init_f(); - /* Example code showing how to enable the debug UART on MVEBU */ -#ifdef EARLY_UART - /* - * Debug UART can be used from here if required: - * - * debug_uart_init(); - * printch('a'); - * printhex8(0x1234); - * printascii("string"); - */ -#endif - /* * Use special translation offset for SPL. This needs to be * configured *before* spl_init() is called as this function |