summaryrefslogtreecommitdiff
path: root/arch
diff options
context:
space:
mode:
authorHarald Seiler <hws@denx.de>2020-04-23 14:07:53 +0300
committerStefano Babic <sbabic@denx.de>2020-05-01 19:48:48 +0300
commitd81a68957f3f4158dd45eda38b8e21ce8e96e590 (patch)
treecc6ebc4037728d0d85c380b38558e0b37924b1c6 /arch
parent5fc5bac67b90f507b2e93bbcd1ddeafc8eb32278 (diff)
downloadu-boot-d81a68957f3f4158dd45eda38b8e21ce8e96e590.tar.xz
imx: spl: Fix use of removed SPL_FAT_SUPPORT config
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>
Diffstat (limited to 'arch')
-rw-r--r--arch/arm/mach-imx/spl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/mach-imx/spl.c b/arch/arm/mach-imx/spl.c
index 32d78b799c..fd3fa04600 100644
--- a/arch/arm/mach-imx/spl.c
+++ b/arch/arm/mach-imx/spl.c
@@ -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;