SPL: stm32mp1: fix spl_mmc_boot_partition not defined
spl_mmc_boot_partition is only defined when CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION is defined. Signed-off-by: Richard Genoud <richard.genoud@posteo.net> Reviewed-by: Patrick Delaunay <patrick.delaunay@st.com>
This commit is contained in:
parent
34d573fdab
commit
40426d6f9a
1 changed files with 2 additions and 0 deletions
|
@ -55,6 +55,7 @@ u32 spl_mmc_boot_mode(const u32 boot_device)
|
|||
return MMCSD_MODE_RAW;
|
||||
}
|
||||
|
||||
#ifdef CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION
|
||||
int spl_mmc_boot_partition(const u32 boot_device)
|
||||
{
|
||||
switch (boot_device) {
|
||||
|
@ -66,6 +67,7 @@ int spl_mmc_boot_partition(const u32 boot_device)
|
|||
return -EINVAL;
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
#ifdef CONFIG_SPL_DISPLAY_PRINT
|
||||
void spl_display_print(void)
|
||||
|
|
Loading…
Reference in a new issue