Skip to content
Snippets Groups Projects
Commit 548b3ee7 authored by Simon Glass's avatar Simon Glass Committed by Tom Rini
Browse files

spl: Convert spl_nor_load_image() to use linker list


Add a linker list declaration for this method and remove the explicit
switch() code.

Signed-off-by: default avatarSimon Glass <sjg@chromium.org>
Reviewed-by: default avatarTom Rini <trini@konsulko.com>
parent afa6e6c4
No related branches found
No related tags found
No related merge requests found
...@@ -384,10 +384,6 @@ static int spl_load_image(u32 boot_device) ...@@ -384,10 +384,6 @@ static int spl_load_image(u32 boot_device)
return loader->load_image(&bootdev); return loader->load_image(&bootdev);
switch (boot_device) { switch (boot_device) {
#ifdef CONFIG_SPL_NOR_SUPPORT
case BOOT_DEVICE_NOR:
return spl_nor_load_image(&bootdev);
#endif
#ifdef CONFIG_SPL_YMODEM_SUPPORT #ifdef CONFIG_SPL_YMODEM_SUPPORT
case BOOT_DEVICE_UART: case BOOT_DEVICE_UART:
return spl_ymodem_load_image(&bootdev); return spl_ymodem_load_image(&bootdev);
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
#include <common.h> #include <common.h>
#include <spl.h> #include <spl.h>
int spl_nor_load_image(struct spl_boot_device *bootdev) static int spl_nor_load_image(struct spl_boot_device *bootdev)
{ {
int ret; int ret;
/* /*
...@@ -70,3 +70,4 @@ int spl_nor_load_image(struct spl_boot_device *bootdev) ...@@ -70,3 +70,4 @@ int spl_nor_load_image(struct spl_boot_device *bootdev)
return 0; return 0;
} }
SPL_LOAD_IMAGE_METHOD(0, BOOT_DEVICE_NOR, spl_nor_load_image);
...@@ -181,9 +181,6 @@ struct spl_image_loader { ...@@ -181,9 +181,6 @@ struct spl_image_loader {
.load_image = __method, \ .load_image = __method, \
} }
/* NOR SPL functions */
int spl_nor_load_image(struct spl_boot_device *bootdev);
/* YMODEM SPL functions */ /* YMODEM SPL functions */
int spl_ymodem_load_image(struct spl_boot_device *bootdev); int spl_ymodem_load_image(struct spl_boot_device *bootdev);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment