aboutsummaryrefslogtreecommitdiff
path: root/plat/fvp/plat_io_storage.c
diff options
context:
space:
mode:
authorJeenu Viswambharan <jeenu.viswambharan@arm.com>2014-02-20 12:03:31 +0000
committerDan Handley <dan.handley@arm.com>2014-02-20 19:06:34 +0000
commit08c28d5385f8fae3d5c61475a109b86ef11770d0 (patch)
tree91b8e2bef2045e965082d03d12aa268237815d5b /plat/fvp/plat_io_storage.c
parent916a2c1ec16eed4199f27a24b8e2985275cda423 (diff)
Report recoverable errors as warnings
At present many recoverable failures are reported as errors. This patch modifies all such failures to be reported as warnings instead. Change-Id: I5141653c82498defcada9b90fdf7498ba496b2f2
Diffstat (limited to 'plat/fvp/plat_io_storage.c')
-rw-r--r--plat/fvp/plat_io_storage.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plat/fvp/plat_io_storage.c b/plat/fvp/plat_io_storage.c
index 768c3c5..359af7d 100644
--- a/plat/fvp/plat_io_storage.c
+++ b/plat/fvp/plat_io_storage.c
@@ -234,7 +234,7 @@ static int fvp_bl33_policy(io_dev_handle *dev_handle, void **image_spec)
int result = IO_FAIL;
void *local_image_spec = &bl33_file_spec;
- INFO("Loading BL33 (UEFI)\n");
+ INFO("Loading BL33 (Normal world firmware)\n");
/* FIP first then fall back to semi-hosting */
result = open_fip(local_image_spec);
if (result == IO_SUCCESS) {