From 7b12ebe407794fb7b2ab3668b21969502bddd227 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=81lvaro=20Fern=C3=A1ndez=20Rojas?= Date: Mon, 24 Apr 2017 19:03:31 +0200 Subject: [PATCH] MIPS: QCA AP121: remove debug_uart_init call MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit In order to add a generic MIPS debug_uart_init call right before the call to board_early_init_f, we need to remove all calls to debug_uart_init from every MIPS boards. Signed-off-by: Álvaro Fernández Rojas --- board/qca/ap121/ap121.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/board/qca/ap121/ap121.c b/board/qca/ap121/ap121.c index e245faa5cf..ac9be35dd9 100644 --- a/board/qca/ap121/ap121.c +++ b/board/qca/ap121/ap121.c @@ -43,9 +43,6 @@ void board_debug_uart_init(void) int board_early_init_f(void) { -#ifdef CONFIG_DEBUG_UART - debug_uart_init(); -#endif ddr_init(); ath79_eth_reset(); return 0;