diff options
author | davidcunado-arm <david.cunado@arm.com> | 2016-09-01 09:43:32 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-09-01 09:43:32 +0100 |
commit | 99e89377ebdcf8b46ae5dcb5f940483760a8a03f (patch) | |
tree | 6b91319c2ac499b1a66b1b14bc36003255066cab /common | |
parent | f6ace15f9fdaa78342e758ebc61699754a4d6be2 (diff) | |
parent | 9e3b4cbbade36bb38a4a96381f0aca1b48ccaa0c (diff) |
Merge pull request #695 from soby-mathew/sm/AArch32_fixes
Fixes for AArch32 port of TF
Diffstat (limited to 'common')
-rw-r--r-- | common/bl_common.c | 2 |
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 } |