summaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorDevarsh Thakkar <devarsht@ti.com>2024-03-19 17:10:59 +0530
committerPraneeth Bajjuri <praneeth@ti.com>2024-03-19 15:30:35 -0500
commitcdb078e7353f92ed524602f2712827a0efe858fe (patch)
tree122253e1c6dd801eedd72ccba1a4d6d033e37f34 /common
parentd2612223375a25f81068d7a7abd86c08cd129a2c (diff)
HACK: common: board_f: Don't treat bloblist failure as hard error
Don't propagate error on bloblist failure as it is possible that splash logo file may not have been present in expected location since common defconfig is being used for other bootmodes too. Signed-off-by: Devarsh Thakkar <devarsht@ti.com>
Diffstat (limited to 'common')
-rw-r--r--common/board_f.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/common/board_f.c b/common/board_f.c
index aaf64ed9d8..7f5af1ed15 100644
--- a/common/board_f.c
+++ b/common/board_f.c
@@ -416,8 +416,10 @@ static int reserve_video(void)
struct video_handoff *ho;
ho = bloblist_find(BLOBLISTT_U_BOOT_VIDEO, sizeof(*ho));
- if (!ho)
- return log_msg_ret("blf", -ENOENT);
+ if (!ho) {
+ printf("no bloblist found!");
+ return 0;
+ }
video_reserve_from_bloblist(ho);
gd->relocaddr = ho->fb;
} else if (CONFIG_IS_ENABLED(VIDEO)) {