diff options
author | danh-arm <dan.handley@arm.com> | 2015-12-14 18:00:27 +0000 |
---|---|---|
committer | danh-arm <dan.handley@arm.com> | 2015-12-14 18:00:27 +0000 |
commit | 31d5e7f56ea66d2b540fcb25fb27b930dfc45221 (patch) | |
tree | d5cc70b9270853267cfbb213b1d65b39c0d2899d /bl31/bl31_main.c | |
parent | a84deb9c3fe5396d580b695acc09a75d67332559 (diff) | |
parent | d178637d2bac46ef0d227395663c55cc46a25d73 (diff) |
Merge pull request #467 from jcastillo-arm/jc/tbb_oid
Apply new image terminology
Diffstat (limited to 'bl31/bl31_main.c')
-rw-r--r-- | bl31/bl31_main.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/bl31/bl31_main.c b/bl31/bl31_main.c index f22e6121..835d41e8 100644 --- a/bl31/bl31_main.c +++ b/bl31/bl31_main.c @@ -71,8 +71,8 @@ void bl31_lib_init(void) ******************************************************************************/ void bl31_main(void) { - NOTICE("BL3-1: %s\n", version_string); - NOTICE("BL3-1: %s\n", build_message); + NOTICE("BL31: %s\n", version_string); + NOTICE("BL31: %s\n", build_message); /* Perform remaining generic architectural setup from EL3 */ bl31_arch_setup(); @@ -84,7 +84,7 @@ void bl31_main(void) bl31_lib_init(); /* Initialize the runtime services e.g. psci */ - INFO("BL3-1: Initializing runtime services\n"); + INFO("BL31: Initializing runtime services\n"); runtime_svc_init(); /* @@ -101,7 +101,7 @@ void bl31_main(void) * If SPD had registerd an init hook, invoke it. */ if (bl32_init) { - INFO("BL3-1: Initializing BL3-2\n"); + INFO("BL31: Initializing BL32\n"); (*bl32_init)(); } /* @@ -153,7 +153,7 @@ void bl31_prepare_next_image_entry(void) assert(next_image_info); assert(image_type == GET_SECURITY_STATE(next_image_info->h.attr)); - INFO("BL3-1: Preparing for EL3 exit to %s world\n", + INFO("BL31: Preparing for EL3 exit to %s world\n", (image_type == SECURE) ? "secure" : "normal"); print_entry_point_info(next_image_info); cm_init_my_context(next_image_info); |