imx: spl: Fix use of removed SPL_FAT_SUPPORT config
authorHarald Seiler <hws@denx.de>
Thu, 23 Apr 2020 11:07:53 +0000 (13:07 +0200)
committerStefano Babic <sbabic@denx.de>
Fri, 1 May 2020 16:48:48 +0000 (18:48 +0200)
CONFIG_SPL_FAT_SUPPORT was removed in commit 0c3a9ed409a5
("spl: Kconfig: Replace CONFIG_SPL_FAT_SUPPORT with CONFIG_SPL_FS_FAT").
Fixup a leftover use of the symbol.

Fixes: 9d86dbd9cf9d ("imx: spl: implement spl_boot_mode for i.MX7/8/8M")
Signed-off-by: Harald Seiler <hws@denx.de>
arch/arm/mach-imx/spl.c

index 32d78b799c36789c03eb0d5534c18c61afc7c29e..fd3fa046002a279e059138ae51337919fde73035 100644 (file)
@@ -197,14 +197,14 @@ u32 spl_mmc_boot_mode(const u32 boot_device)
        case SD1_BOOT:
        case SD2_BOOT:
        case SD3_BOOT:
-               if (IS_ENABLED(CONFIG_SPL_FAT_SUPPORT))
+               if (IS_ENABLED(CONFIG_SPL_FS_FAT))
                        return MMCSD_MODE_FS;
                else
                        return MMCSD_MODE_RAW;
        case MMC1_BOOT:
        case MMC2_BOOT:
        case MMC3_BOOT:
-               if (IS_ENABLED(CONFIG_SPL_FAT_SUPPORT))
+               if (IS_ENABLED(CONFIG_SPL_FS_FAT))
                        return MMCSD_MODE_FS;
                else if (IS_ENABLED(CONFIG_SUPPORT_EMMC_BOOT))
                        return MMCSD_MODE_EMMCBOOT;