diff options
author | Simon Glass <sjg@chromium.org> | 2016-09-24 18:20:03 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2016-10-06 15:06:58 -0400 |
commit | afa6e6c48845bac39a73b41012e8d7a53b13598d (patch) | |
tree | 9d65158d116c515f5b3cccc74898f97e5279a477 /include/spl.h | |
parent | d5c2b11ce40f8ca849008938515e742e6b7efc18 (diff) | |
download | u-boot-afa6e6c48845bac39a73b41012e8d7a53b13598d.tar.gz |
spl: Convert spl_onenand_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 927f300f3d..e26f06eff1 100644 --- a/include/spl.h +++ b/include/spl.h @@ -181,9 +181,6 @@ struct spl_image_loader { .load_image = __method, \ } -/* OneNAND SPL functions */ -int spl_onenand_load_image(struct spl_boot_device *bootdev); - /* NOR SPL functions */ int spl_nor_load_image(struct spl_boot_device *bootdev); |