diff options
author | Simon Glass <sjg@chromium.org> | 2016-09-24 18:20:09 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2016-10-06 15:07:34 -0400 |
commit | 139db7af4eff4eabdcc104c5c5687ab9fe64ca9a (patch) | |
tree | e3401e6b2908aac0571b9c2f2408cbfbdd8c51a6 /include | |
parent | 0a9b73a13e3440994d4b245ffdc86c51361a296d (diff) | |
download | u-boot-imx-139db7af4eff4eabdcc104c5c5687ab9fe64ca9a.zip u-boot-imx-139db7af4eff4eabdcc104c5c5687ab9fe64ca9a.tar.gz u-boot-imx-139db7af4eff4eabdcc104c5c5687ab9fe64ca9a.tar.bz2 |
spl: Convert spl_spi_load_image() to use linker list
Add a linker list declaration for this method and remove the explicit
switch() code. Also set up the sunxi function.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'include')
-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 2d0e128..d46ddd4 100644 --- a/include/spl.h +++ b/include/spl.h @@ -181,9 +181,6 @@ struct spl_image_loader { .load_image = __method, \ } -/* SPI SPL functions */ -int spl_spi_load_image(struct spl_boot_device *bootdev); - /* Ethernet SPL functions */ int spl_net_load_image(struct spl_boot_device *bootdev); |