Some error messages emitted while loading the splash image are too
cryptic and don't provide any insights into the failure being a splash
related issue, such as 'Error (-2): cannot determine file size' etc.
This patch fixes the error codes by adding the function name to the
error print.
Signed-off-by: Anshul Dalal <anshuld@ti.com>
[trini: Add missing ',' and wrap to 80-width]
Signed-off-by: Tom Rini <trini@konsulko.com>
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;
}
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;
}