mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 15:14:43 +00:00
imx: spl: Fix use of removed SPL_FAT_SUPPORT config
CONFIG_SPL_FAT_SUPPORT was removed in commit0c3a9ed409
("spl: Kconfig: Replace CONFIG_SPL_FAT_SUPPORT with CONFIG_SPL_FS_FAT"). Fixup a leftover use of the symbol. Fixes:9d86dbd9cf
("imx: spl: implement spl_boot_mode for i.MX7/8/8M") Signed-off-by: Harald Seiler <hws@denx.de>
This commit is contained in:
parent
5fc5bac67b
commit
d81a68957f
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue