diff options
author | Sandrine Bailleux <sandrine.bailleux@arm.com> | 2014-05-27 15:46:07 +0100 |
---|---|---|
committer | Sandrine Bailleux <sandrine.bailleux@arm.com> | 2014-06-05 12:04:08 +0100 |
commit | e4d133899083fcb4874a70c3f82c296a89455ecd (patch) | |
tree | 43fbaa7b37f312448b50f3b28eb4649904a1d8ab | |
parent | 977fbcd4e0842e590a961d6f40c14653caa9301a (diff) |
Include 'platform_def.h' header file in 'crash_reporting.S'
'crash_reporting.S' needs to include 'platform_def.h' to get the
definition of PLATFORM_CORE_COUNT.
Note: On FVP it was compiling because 'platform_def.h' gets included
through 'plat/fvp/include/plat_macros.S' but we don't want to rely on
that for other platforms.
Change-Id: I51e974776dd0f3bda10ad9849f5ef7b30c629833
-rw-r--r-- | bl31/aarch64/crash_reporting.S | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bl31/aarch64/crash_reporting.S b/bl31/aarch64/crash_reporting.S index cb9110b5..69b7a1c8 100644 --- a/bl31/aarch64/crash_reporting.S +++ b/bl31/aarch64/crash_reporting.S @@ -31,6 +31,7 @@ #include <asm_macros.S> #include <context.h> #include <plat_macros.S> +#include <platform_def.h> .globl get_crash_stack .globl dump_state_and_die |