Merge tag 'u-boot-imx-20231024' of https://gitlab.denx.de/u-boot/custodians/u-boot-imx
u-boot-imx-20231024 ------------------- CI: https://source.denx.de/u-boot/custodians/u-boot-imx/-/pipelines/18211 - Fixes for MC2432 Eeprom - i.MX93 ADC - Secondary boot mode on i.MX8M
This commit is contained in:
@@ -365,10 +365,22 @@ int __weak spl_mmc_boot_partition(const u32 boot_device)
|
||||
}
|
||||
#endif
|
||||
|
||||
unsigned long __weak arch_spl_mmc_get_uboot_raw_sector(struct mmc *mmc,
|
||||
unsigned long raw_sect)
|
||||
{
|
||||
return raw_sect;
|
||||
}
|
||||
|
||||
unsigned long __weak board_spl_mmc_get_uboot_raw_sector(struct mmc *mmc,
|
||||
unsigned long raw_sect)
|
||||
{
|
||||
return arch_spl_mmc_get_uboot_raw_sector(mmc, raw_sect);
|
||||
}
|
||||
|
||||
unsigned long __weak spl_mmc_get_uboot_raw_sector(struct mmc *mmc,
|
||||
unsigned long raw_sect)
|
||||
{
|
||||
return raw_sect;
|
||||
return board_spl_mmc_get_uboot_raw_sector(mmc, raw_sect);
|
||||
}
|
||||
|
||||
int default_spl_mmc_emmc_boot_partition(struct mmc *mmc)
|
||||
|
||||
Reference in New Issue
Block a user