summaryrefslogtreecommitdiff
path: root/common/spl
diff options
context:
space:
mode:
authorHarald Seiler <hws@denx.de>2020-04-15 12:33:31 +0300
committerPeng Fan <peng.fan@nxp.com>2020-04-22 15:41:57 +0300
commitc51b7518931a147c3e024bcc0c44f87dc197ac89 (patch)
tree7eb4905529c1c65e2cd432f438e7c7f580d96a24 /common/spl
parente97590654aea4c964f49bd915543a417d0c76996 (diff)
downloadu-boot-c51b7518931a147c3e024bcc0c44f87dc197ac89.tar.xz
spl: mmc: Rename spl_boot_partition() to spl_mmc_boot_partition()
This function is only relevant to the MMC driver so calling it spl_boot_partition() might be confusing. Rename it to spl_mmc_boot_partition() to make its purpose more clear (and bring it in line with spl_mmc_boot_mode()). Signed-off-by: Harald Seiler <hws@denx.de> Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'common/spl')
-rw-r--r--common/spl/spl_mmc.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/common/spl/spl_mmc.c b/common/spl/spl_mmc.c
index fb8ad5d540..a68cdec8dc 100644
--- a/common/spl/spl_mmc.c
+++ b/common/spl/spl_mmc.c
@@ -310,8 +310,7 @@ u32 __weak spl_mmc_boot_mode(const u32 boot_device)
}
#ifdef CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION
-__weak
-int spl_boot_partition(const u32 boot_device)
+int __weak spl_mmc_boot_partition(const u32 boot_device)
{
return CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_PARTITION;
}
@@ -431,7 +430,7 @@ int spl_mmc_load_image(struct spl_image_info *spl_image,
NULL,
#endif
#ifdef CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_PARTITION
- spl_boot_partition(bootdev->boot_device),
+ spl_mmc_boot_partition(bootdev->boot_device),
#else
0,
#endif