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

spl: sandbox: Drop spl_board_announce_boot_device()


This function is not used anymore. Drop it.

Signed-off-by: default avatarSimon Glass <sjg@chromium.org>
parent dd38045d
No related branches found
No related tags found
No related merge requests found
...@@ -25,19 +25,6 @@ u32 spl_boot_device(void) ...@@ -25,19 +25,6 @@ u32 spl_boot_device(void)
return BOOT_DEVICE_BOARD; return BOOT_DEVICE_BOARD;
} }
void spl_board_announce_boot_device(void)
{
char fname[256];
int ret;
ret = os_find_u_boot(fname, sizeof(fname));
if (ret) {
printf("(%s not found, error %d)\n", fname, ret);
return;
}
printf("%s\n", fname);
}
static int spl_board_load_image(struct spl_image_info *spl_image, static int spl_board_load_image(struct spl_image_info *spl_image,
struct spl_boot_device *bootdev) struct spl_boot_device *bootdev)
{ {
...@@ -45,8 +32,10 @@ static int spl_board_load_image(struct spl_image_info *spl_image, ...@@ -45,8 +32,10 @@ static int spl_board_load_image(struct spl_image_info *spl_image,
int ret; int ret;
ret = os_find_u_boot(fname, sizeof(fname)); ret = os_find_u_boot(fname, sizeof(fname));
if (ret) if (ret) {
printf("(%s not found, error %d)\n", fname, ret);
return ret; return ret;
}
/* Hopefully this will not return */ /* Hopefully this will not return */
return os_spl_to_uboot(fname); return os_spl_to_uboot(fname);
......
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