summaryrefslogtreecommitdiffstats
path: root/include/spl.h
diff options
context:
space:
mode:
authorHarald Seiler <hws@denx.de>2020-04-15 11:33:31 +0200
committerPeng Fan <peng.fan@nxp.com>2020-04-22 20:41:57 +0800
commitc51b7518931a147c3e024bcc0c44f87dc197ac89 (patch)
tree7eb4905529c1c65e2cd432f438e7c7f580d96a24 /include/spl.h
parente97590654aea4c964f49bd915543a417d0c76996 (diff)
downloadu-boot-c51b7518931a147c3e024bcc0c44f87dc197ac89.tar.gz
u-boot-c51b7518931a147c3e024bcc0c44f87dc197ac89.tar.xz
u-boot-c51b7518931a147c3e024bcc0c44f87dc197ac89.zip
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 'include/spl.h')
-rw-r--r--include/spl.h14
1 files changed, 13 insertions, 1 deletions
diff --git a/include/spl.h b/include/spl.h
index fffcc610bb..8b15cd4914 100644
--- a/include/spl.h
+++ b/include/spl.h
@@ -255,7 +255,19 @@ u32 spl_boot_device(void);
* spl_boot_device() as U-Boot is not always loaded from the same device as SPL.
*/
u32 spl_mmc_boot_mode(const u32 boot_device);
-int spl_boot_partition(const u32 boot_device);
+
+/**
+ * spl_mmc_boot_partition() - MMC partition to load U-Boot from.
+ * @boot_device: ID of the device which the MMC driver wants to load
+ * U-Boot from.
+ *
+ * This function should return the partition number which the SPL
+ * should load U-Boot from (on the given boot_device) when
+ * CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION is set.
+ *
+ * If not overridden, it is weakly defined in common/spl/spl_mmc.c.
+ */
+int spl_mmc_boot_partition(const u32 boot_device);
void spl_set_bd(void);
/**