summaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorSoby Mathew <soby.mathew@arm.com>2016-08-30 13:07:31 +0100
committerSoby Mathew <soby.mathew@arm.com>2016-08-31 18:14:07 +0100
commit51c79b7351ba99f8d6ad6c3045cc8fb10b413b4a (patch)
treeb7fd017181c3da423f36135cfe36ff19df41a59a /common
parentf6ace15f9fdaa78342e758ebc61699754a4d6be2 (diff)
AArch32: resolve build error when LOG_LEVEL=50
This patch resolves a build error in Trusted Firmware when `ARCH=aarch32` and LOG_LEVEL >= 50. Change-Id: I62a23ded4a25304533cdcc5ff11442aee041709b
Diffstat (limited to 'common')
-rw-r--r--common/bl_common.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/common/bl_common.c b/common/bl_common.c
index 6dcd4c18..bae02d4b 100644
--- a/common/bl_common.c
+++ b/common/bl_common.c
@@ -419,9 +419,11 @@ void print_entry_point_info(const entry_point_info_t *ep_info)
PRINT_IMAGE_ARG(1);
PRINT_IMAGE_ARG(2);
PRINT_IMAGE_ARG(3);
+#ifndef AARCH32
PRINT_IMAGE_ARG(4);
PRINT_IMAGE_ARG(5);
PRINT_IMAGE_ARG(6);
PRINT_IMAGE_ARG(7);
+#endif
#undef PRINT_IMAGE_ARG
}