diff options
author | Simon Glass <sjg@chromium.org> | 2016-09-24 18:20:02 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2016-10-06 15:06:57 -0400 |
commit | d5c2b11ce40f8ca849008938515e742e6b7efc18 (patch) | |
tree | 96a7b6c6143ef47e11eaf06ca07e615d10f73d2e /include | |
parent | 7d7dd821b0921d762a1dbfae48f2c3aa3ff29df6 (diff) |
spl: Convert spl_nand_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')
-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 47c10451fe..927f300f3d 100644 --- a/include/spl.h +++ b/include/spl.h @@ -181,9 +181,6 @@ struct spl_image_loader { .load_image = __method, \ } -/* NAND SPL functions */ -int spl_nand_load_image(struct spl_boot_device *bootdev); - /* OneNAND SPL functions */ int spl_onenand_load_image(struct spl_boot_device *bootdev); |