diff options
author | Simon Glass <sjg@chromium.org> | 2016-09-24 18:20:00 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2016-10-06 15:06:56 -0400 |
commit | 0fed9c7ed69c7f85f0f76fd58c1ef6ea991a786c (patch) | |
tree | 7b6c16f88f44aa6fe4a13ca5fd2d71d60155868b /include/spl.h | |
parent | 98136b2f26fa4afc8e3a9954cb85038d29b2e4e3 (diff) | |
download | u-boot-0fed9c7ed69c7f85f0f76fd58c1ef6ea991a786c.tar.gz |
spl: Convert spl_mmc_load_image() to use linker list
Add a linker list declaration for this method and remove the explicit
switch() code.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'include/spl.h')
-rw-r--r-- | include/spl.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/include/spl.h b/include/spl.h index 884fbe6179..174147a06a 100644 --- a/include/spl.h +++ b/include/spl.h @@ -193,9 +193,6 @@ int spl_nor_load_image(struct spl_boot_device *bootdev); /* UBI SPL functions */ int spl_ubi_load_image(struct spl_boot_device *bootdev); -/* MMC SPL functions */ -int spl_mmc_load_image(struct spl_boot_device *bootdev); - /* YMODEM SPL functions */ int spl_ymodem_load_image(struct spl_boot_device *bootdev); |