diff options
author | Simon Glass <sjg@chromium.org> | 2016-11-30 15:30:56 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2016-12-09 08:40:18 -0500 |
commit | f831b8e4a4f2992f3aa6d59fb91000c605a57ea7 (patch) | |
tree | b4f4245c30cfc50d8dc6213dbc87ad43bb717198 /arch/sandbox | |
parent | dd38045dce4f4aa919d37df85d8febbf79cdc8f8 (diff) | |
download | u-boot-imx-f831b8e4a4f2992f3aa6d59fb91000c605a57ea7.zip u-boot-imx-f831b8e4a4f2992f3aa6d59fb91000c605a57ea7.tar.gz u-boot-imx-f831b8e4a4f2992f3aa6d59fb91000c605a57ea7.tar.bz2 |
spl: sandbox: Drop spl_board_announce_boot_device()
This function is not used anymore. Drop it.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch/sandbox')
-rw-r--r-- | arch/sandbox/cpu/spl.c | 17 |
1 files changed, 3 insertions, 14 deletions
diff --git a/arch/sandbox/cpu/spl.c b/arch/sandbox/cpu/spl.c index 632446b..7cc76d4 100644 --- a/arch/sandbox/cpu/spl.c +++ b/arch/sandbox/cpu/spl.c @@ -25,19 +25,6 @@ u32 spl_boot_device(void) 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, struct spl_boot_device *bootdev) { @@ -45,8 +32,10 @@ static int spl_board_load_image(struct spl_image_info *spl_image, int ret; ret = os_find_u_boot(fname, sizeof(fname)); - if (ret) + if (ret) { + printf("(%s not found, error %d)\n", fname, ret); return ret; + } /* Hopefully this will not return */ return os_spl_to_uboot(fname); |