From e7528a3d7436fd0d073ecdd8527f9a0dc535e172 Mon Sep 17 00:00:00 2001 From: Eran Matityahu Date: Wed, 3 Jan 2018 12:56:24 +0200 Subject: [PATCH 1/1] imx7: spl: Add support for MMC3, SD3 and NAND boot devices Signed-off-by: Eran Matityahu --- arch/arm/mach-imx/spl.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/arch/arm/mach-imx/spl.c b/arch/arm/mach-imx/spl.c index 5e0338fc4c..346fc0bee9 100644 --- a/arch/arm/mach-imx/spl.c +++ b/arch/arm/mach-imx/spl.c @@ -108,7 +108,11 @@ u32 spl_boot_device(void) case MMC1_BOOT: case SD2_BOOT: case MMC2_BOOT: + case SD3_BOOT: + case MMC3_BOOT: return BOOT_DEVICE_MMC1; + case NAND_BOOT: + return BOOT_DEVICE_NAND; case SPI_NOR_BOOT: return BOOT_DEVICE_SPI; default: -- 2.39.2