While the eMMC is indeed uSDHC3, the board's device tree aliases shuffle around the order, so the eMMC is at mmc0 and the SD is at mmc1. We thus need to follow suit in the board code as to register the correct device with the eMMC barebox update handler. Signed-off-by: Ahmad Fatoum <a.fatoum@xxxxxxxxxxxxxx> --- arch/arm/boards/tqma8mpxl/board.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/boards/tqma8mpxl/board.c b/arch/arm/boards/tqma8mpxl/board.c index 39d1bd24d497..16ba1eb1c61c 100644 --- a/arch/arm/boards/tqma8mpxl/board.c +++ b/arch/arm/boards/tqma8mpxl/board.c @@ -29,7 +29,7 @@ static int tqma8mpxl_probe(struct device *dev) } imx8m_bbu_internal_mmc_register_handler("SD", "/dev/mmc1.barebox", sd_bbu_flag); - imx8m_bbu_internal_mmcboot_register_handler("eMMC", "/dev/mmc2", emmc_bbu_flag); + imx8m_bbu_internal_mmcboot_register_handler("eMMC", "/dev/mmc0", emmc_bbu_flag); return 0; } -- 2.39.2