summaryrefslogtreecommitdiff
path: root/common/splash_source.c
diff options
context:
space:
mode:
authorTom Rini <[email protected]>2026-07-06 18:26:12 -0600
committerTom Rini <[email protected]>2026-07-06 18:26:12 -0600
commitee5d46b45ec0c63f8f9dd1e816e0dac3452ccc3d (patch)
tree800cd9e204ca027144070101884c0d5d3c00130f /common/splash_source.c
parentece349ade2973e220f524ce59e59711cc919263f (diff)
parenta18265f1ccb7a272721ed4286ed3b5a6182ff424 (diff)
Merge branch 'next'
Diffstat (limited to 'common/splash_source.c')
-rw-r--r--common/splash_source.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/common/splash_source.c b/common/splash_source.c
index 0710e302ba1..e02f9be05e4 100644
--- a/common/splash_source.c
+++ b/common/splash_source.c
@@ -159,12 +159,12 @@ static int splash_select_fs_dev(struct splash_location *location)
res = -ENODEV;
break;
default:
- printf("Error: unsupported location storage.\n");
+ printf("Error: %s: unsupported location storage.\n", __func__);
return -ENODEV;
}
if (res)
- printf("Error: could not access storage.\n");
+ printf("Error: %s: could not access storage.\n", __func__);
return res;
}
@@ -284,7 +284,8 @@ static int splash_load_fs(struct splash_location *location, ulong bmp_load_addr)
res = fs_size(splash_file, &bmp_size);
if (res) {
- printf("Error (%d): cannot determine file size\n", res);
+ printf("Error: %s: cannot determine file size (%d)\n",
+ __func__, res);
goto out;
}