diff options
author | Roberto Vargas <roberto.vargas@arm.com> | 2017-10-20 10:37:48 +0100 |
---|---|---|
committer | Roberto Vargas <roberto.vargas@arm.com> | 2017-11-01 08:26:24 +0000 |
commit | 4d476e45f271dd520fb22a5a7277c59689400a4d (patch) | |
tree | 4ac321f748b77c7155944158bc20d2eef143e3eb /common | |
parent | 24552242b2143e0588ba93b41ec614e151d10f5c (diff) | |
download | platform_external_arm-trusted-firmware-4d476e45f271dd520fb22a5a7277c59689400a4d.tar.gz platform_external_arm-trusted-firmware-4d476e45f271dd520fb22a5a7277c59689400a4d.tar.bz2 platform_external_arm-trusted-firmware-4d476e45f271dd520fb22a5a7277c59689400a4d.zip |
Include debug.h in debug.S
debug.S was using macros defined in debug.h, but since it didn't
include it, these macros were taking the value 0, which means that
all the preprocessor conditionals were wrong.
Change-Id: If4ca81cc5a1662991589f914a2557ceff0eaaede
Signed-off-by: Roberto Vargas <roberto.vargas@arm.com>
Diffstat (limited to 'common')
-rw-r--r-- | common/aarch64/debug.S | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/common/aarch64/debug.S b/common/aarch64/debug.S index d794d12ea..4478d0d03 100644 --- a/common/aarch64/debug.S +++ b/common/aarch64/debug.S @@ -6,6 +6,7 @@ #include <arch.h> #include <asm_macros.S> +#include <debug.h> .globl asm_print_str .globl asm_print_hex |