summaryrefslogtreecommitdiff
path: root/bl2
diff options
context:
space:
mode:
authorDimitris Papastamos <dimitris.papastamos@arm.com>2018-04-16 15:04:28 +0100
committerGitHub <noreply@github.com>2018-04-16 15:04:28 +0100
commit8b37120065e5800c49754a5c9ba97bc98728c964 (patch)
tree5600523a42e194280583c16cda686a4ee7658d80 /bl2
parent9d82dd9b68114f0ac4d56b23e83e61414f2dc72f (diff)
parent3b94189a921c0ea2a410c7730dc9636d95f5aa86 (diff)
Merge pull request #1356 from robertovargas-arm/misra-changes
Misra changes
Diffstat (limited to 'bl2')
-rw-r--r--bl2/bl2_image_load.c4
-rw-r--r--bl2/bl2_image_load_v2.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/bl2/bl2_image_load.c b/bl2/bl2_image_load.c
index d5d28a54..d22e9ce4 100644
--- a/bl2/bl2_image_load.c
+++ b/bl2/bl2_image_load.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2016, ARM Limited and Contributors. All rights reserved.
+ * Copyright (c) 2016-2018, ARM Limited and Contributors. All rights reserved.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
@@ -182,7 +182,7 @@ static int load_bl33(bl31_params_t *bl2_to_bl31_params)
* This function loads SCP_BL2/BL3x images and returns the ep_info for
* the next executable image.
******************************************************************************/
-entry_point_info_t *bl2_load_images(void)
+struct entry_point_info *bl2_load_images(void)
{
bl31_params_t *bl2_to_bl31_params;
entry_point_info_t *bl31_ep_info;
diff --git a/bl2/bl2_image_load_v2.c b/bl2/bl2_image_load_v2.c
index d95c6b28..0f40785d 100644
--- a/bl2/bl2_image_load_v2.c
+++ b/bl2/bl2_image_load_v2.c
@@ -21,7 +21,7 @@
* This function loads SCP_BL2/BL3x images and returns the ep_info for
* the next executable image.
******************************************************************************/
-entry_point_info_t *bl2_load_images(void)
+struct entry_point_info *bl2_load_images(void)
{
bl_params_t *bl2_to_next_bl_params;
bl_load_info_t *bl2_load_info;