AArch32: resolve build error when LOG_LEVEL=50
authorSoby Mathew <soby.mathew@arm.com>
Tue, 30 Aug 2016 12:07:31 +0000 (13:07 +0100)
committerSoby Mathew <soby.mathew@arm.com>
Wed, 31 Aug 2016 17:14:07 +0000 (18:14 +0100)
This patch resolves a build error in Trusted Firmware when `ARCH=aarch32`
and LOG_LEVEL >= 50.

Change-Id: I62a23ded4a25304533cdcc5ff11442aee041709b

common/bl_common.c

index 6dcd4c1847a8eb4ea57c01c6a03950d970979287..bae02d4bf39d2c0a2e7ae05a130b725679282baa 100644 (file)
@@ -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
 }