From e94645a8d3076e1f25542be734e9800732de276e Mon Sep 17 00:00:00 2001 From: Max Merchel Date: Mon, 24 Nov 2025 08:55:23 +0100 Subject: [PATCH] tqma6: Remove empty function tqma6_iomuxc_spi() The function `tqma6_iomuxc_spi()` was removed in the commit "tqma6: Remove non-DM board code". The original function was overwritten with an empty function in the WRU4 baseboard and should also have been removed. Therefore, the function and its call are being removed. Fixes: 93552cc442de ("tqma6: Remove non-DM board code") Signed-off-by: Max Merchel --- board/tq/tqma6/tqma6.c | 3 --- board/tq/tqma6/tqma6_wru4.c | 5 ----- 2 files changed, 8 deletions(-) diff --git a/board/tq/tqma6/tqma6.c b/board/tq/tqma6/tqma6.c index 40369f03e72..a7317b9e761 100644 --- a/board/tq/tqma6/tqma6.c +++ b/board/tq/tqma6/tqma6.c @@ -48,9 +48,6 @@ int board_init(void) /* address of boot parameters */ gd->bd->bi_boot_params = PHYS_SDRAM + 0x100; -#ifndef CONFIG_DM_SPI - tqma6_iomuxc_spi(); -#endif tqma6_bb_board_init(); return 0; diff --git a/board/tq/tqma6/tqma6_wru4.c b/board/tq/tqma6/tqma6_wru4.c index 21c710188e0..aa53212e0e8 100644 --- a/board/tq/tqma6/tqma6_wru4.c +++ b/board/tq/tqma6/tqma6_wru4.c @@ -254,11 +254,6 @@ static void gpio_init(void) gpio_direction_output(GPIO_UART3_PWRON, 0); } -void tqma6_iomuxc_spi(void) -{ - /* No SPI on this baseboard */ -} - int tqma6_bb_board_early_init_f(void) { setup_iomuxc_uart4(); -- 2.47.3