aboutsummaryrefslogtreecommitdiff
path: root/board/atmel/at91sam9263ek
diff options
context:
space:
mode:
authorEugen Hristev <eugen.hristev@microchip.com>2022-06-08 17:49:29 +0300
committerEugen Hristev <eugen.hristev@microchip.com>2022-06-28 10:10:06 +0300
commit38200202997289c39454187da8f07c97eac70833 (patch)
tree07232c57a3e05493d020cb30e47d02126cae1e19 /board/atmel/at91sam9263ek
parent5ae89b3cfe842ecbb5153a95e2e3ac404abe543c (diff)
downloadu-boot-38200202997289c39454187da8f07c97eac70833.zip
u-boot-38200202997289c39454187da8f07c97eac70833.tar.gz
u-boot-38200202997289c39454187da8f07c97eac70833.tar.bz2
board: atmel: remove calls to debug_uart_init
Since 0dba45864b ("arm: Init the debug UART") , the debug_uart_init is now called from crt.S It's no longer required to call it from the board file. With the current code, the banned <debug_uart> is printed twice: <debug_uart> <debug_uart> U-Boot 2022.07-rc4-00089-gee3d158fa8 (Jun 08 2022 - 17:39:29 +0300) Remove all calls from board_early_init_f . Suggested-by: Balamanikandan Gunasundar <Balamanikandan.Gunasundar@microchip.com> Signed-off-by: Eugen Hristev <eugen.hristev@microchip.com>
Diffstat (limited to 'board/atmel/at91sam9263ek')
-rw-r--r--board/atmel/at91sam9263ek/at91sam9263ek.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/board/atmel/at91sam9263ek/at91sam9263ek.c b/board/atmel/at91sam9263ek/at91sam9263ek.c
index 3218e14..c3e1734 100644
--- a/board/atmel/at91sam9263ek/at91sam9263ek.c
+++ b/board/atmel/at91sam9263ek/at91sam9263ek.c
@@ -192,9 +192,6 @@ void board_debug_uart_init(void)
#ifdef CONFIG_BOARD_EARLY_INIT_F
int board_early_init_f(void)
{
-#ifdef CONFIG_DEBUG_UART
- debug_uart_init();
-#endif
return 0;
}
#endif