diff options
| author | Marek Vasut <[email protected]> | 2016-12-01 02:06:35 +0100 |
|---|---|---|
| committer | Jaehoon Chung <[email protected]> | 2016-12-01 14:06:41 +0900 |
| commit | 09410c65724dd0a58e01f94a518c80befc413d90 (patch) | |
| tree | 2633729ce47d39393e77bd646418c7ec264ebc43 | |
| parent | b5b838f1a726e9ab7eea505740e8169b55e90ed6 (diff) | |
SPL: mmc: Make spl_mmc_load_image available
Make the spl_mmc_load_image() available globally, so it can be
invoked directly by SPL on extremely space-constrained systems.
Signed-off-by: Marek Vasut <[email protected]>
Cc: Tom Rini <[email protected]>
Cc: Simon Glass <[email protected]>
Cc: Jaehoon Chung <[email protected]>
| -rw-r--r-- | common/spl/spl_mmc.c | 4 | ||||
| -rw-r--r-- | include/spl.h | 3 |
2 files changed, 5 insertions, 2 deletions
diff --git a/common/spl/spl_mmc.c b/common/spl/spl_mmc.c index 7dfcd0ba2a4..58b061f76ba 100644 --- a/common/spl/spl_mmc.c +++ b/common/spl/spl_mmc.c @@ -272,8 +272,8 @@ static int spl_mmc_do_fs_boot(struct spl_image_info *spl_image, struct mmc *mmc) } #endif -static int spl_mmc_load_image(struct spl_image_info *spl_image, - struct spl_boot_device *bootdev) +int spl_mmc_load_image(struct spl_image_info *spl_image, + struct spl_boot_device *bootdev) { struct mmc *mmc = NULL; u32 boot_mode; diff --git a/include/spl.h b/include/spl.h index e080a82b979..c727eb76d42 100644 --- a/include/spl.h +++ b/include/spl.h @@ -234,4 +234,7 @@ bool spl_was_boot_source(void); */ int spl_dfu_cmd(int usbctrl, char *dfu_alt_info, char *interface, char *devstr); +int spl_mmc_load_image(struct spl_image_info *spl_image, + struct spl_boot_device *bootdev); + #endif |
