"Das U-Boot" Source Tree

board: st: stm32mp1: Clean env_get_location()

ENV_IS_IN_EXT4 flag is no more used in any STM32 defconfig,
remove the related code.

Signed-off-by: Patrice Chotard <patrice.chotard@foss.st.com>
Reviewed-by: Patrick Delaunay <patrick.delaunay@foss.st.com>

-2
-2
board/st/stm32mp1/stm32mp1.c
··· 751 751 case BOOT_FLASH_EMMC: 752 752 if (CONFIG_IS_ENABLED(ENV_IS_IN_MMC)) 753 753 return ENVL_MMC; 754 - else if (CONFIG_IS_ENABLED(ENV_IS_IN_EXT4)) 755 - return ENVL_EXT4; 756 754 else 757 755 return ENVL_NOWHERE; 758 756